2022-08-03 16:01:36 +02:00
|
|
|
name: Build bootstrapper
|
|
|
|
description: Build the Constellation bootstrapper binary
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
outputPath:
|
2022-08-10 10:16:39 +02:00
|
|
|
description: "Output path of the binary"
|
|
|
|
default: "./bootstrapper"
|
2022-08-03 16:01:36 +02:00
|
|
|
required: true
|
|
|
|
|
2022-09-14 15:14:26 +02:00
|
|
|
# Linux runner only (Docker required)
|
2022-08-03 16:01:36 +02:00
|
|
|
runs:
|
2022-08-10 10:16:39 +02:00
|
|
|
using: "composite"
|
2022-08-03 16:01:36 +02:00
|
|
|
steps:
|
|
|
|
- name: Build the bootstrapper
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-09-02 12:44:20 +02:00
|
|
|
echo "::group::Build the bootstrapper"
|
2022-08-03 16:01:36 +02:00
|
|
|
mkdir -p build && cd build
|
|
|
|
cmake ..
|
|
|
|
make bootstrapper
|
|
|
|
mv -n bootstrapper "${{ inputs.outputPath }}"
|
2022-09-02 12:44:20 +02:00
|
|
|
echo "::endgroup::"
|