2022-08-03 10:01:36 -04:00
|
|
|
name: Build bootstrapper
|
|
|
|
description: Build the Constellation bootstrapper binary
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
outputPath:
|
2022-08-10 04:16:39 -04:00
|
|
|
description: "Output path of the binary"
|
|
|
|
default: "./bootstrapper"
|
2022-08-03 10:01:36 -04:00
|
|
|
required: true
|
|
|
|
|
|
|
|
runs:
|
2022-08-10 04:16:39 -04:00
|
|
|
using: "composite"
|
2022-08-03 10:01:36 -04:00
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
shell: bash
|
2022-09-02 06:44:20 -04:00
|
|
|
run: |
|
|
|
|
echo "::group::Install build dependencies"
|
|
|
|
sudo apt-get update && sudo apt-get -y install cmake make
|
|
|
|
echo "::endgroup::"
|
2022-08-10 04:16:39 -04:00
|
|
|
|
2022-08-03 10:01:36 -04:00
|
|
|
- name: Build the bootstrapper
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-09-02 06:44:20 -04:00
|
|
|
echo "::group::Build the bootstrapper"
|
2022-08-03 10:01:36 -04:00
|
|
|
mkdir -p build && cd build
|
|
|
|
cmake ..
|
|
|
|
make bootstrapper
|
|
|
|
mv -n bootstrapper "${{ inputs.outputPath }}"
|
2022-09-02 06:44:20 -04:00
|
|
|
echo "::endgroup::"
|