mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
23 lines
540 B
YAML
23 lines
540 B
YAML
name: Build disk-mapper
|
|
description: Build the Constellation disk-mapper binary
|
|
|
|
inputs:
|
|
outputPath:
|
|
description: "Output path of the binary"
|
|
default: "./disk-mapper"
|
|
required: true
|
|
|
|
# Linux runner only (Docker required)
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Build the disk-mapper
|
|
shell: bash
|
|
run: |
|
|
echo "::group::Build the disk-mapper"
|
|
mkdir -p build && cd build
|
|
cmake ..
|
|
make disk-mapper
|
|
mv -n disk-mapper "${{ inputs.outputPath }}"
|
|
echo "::endgroup::"
|