constellation/.github/actions/build_disk_mapper/action.yml

23 lines
540 B
YAML
Raw Normal View History

name: Build disk-mapper
description: Build the Constellation disk-mapper binary
inputs:
outputPath:
2022-09-14 09:14:26 -04:00
description: "Output path of the binary"
default: "./disk-mapper"
required: true
2022-09-14 09:14:26 -04:00
# Linux runner only (Docker required)
runs:
2022-09-14 09:14:26 -04:00
using: "composite"
steps:
- name: Build the disk-mapper
shell: bash
run: |
2022-09-02 06:44:20 -04:00
echo "::group::Build the disk-mapper"
mkdir -p build && cd build
cmake ..
make disk-mapper
mv -n disk-mapper "${{ inputs.outputPath }}"
2022-09-02 06:44:20 -04:00
echo "::endgroup::"