constellation/.github/actions/build_bootstrapper/action.yml

29 lines
879 B
YAML
Raw Normal View History

name: Build bootstrapper
description: Build the Constellation bootstrapper binary
inputs:
outputPath:
description: "Output path of the binary"
default: "./build/bootstrapper"
required: true
2022-09-14 09:14:26 -04:00
# Linux runner only (Docker required)
runs:
using: "composite"
steps:
- name: Build the bootstrapper
shell: bash
env:
OUTPUT_PATH: ${{ inputs.outputPath }}
run: |
2022-09-02 06:44:20 -04:00
echo "::group::Build the bootstrapper"
mkdir -p "$(dirname "${OUTPUT_PATH}")"
label=//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64
bazel build "${label}"
repository_root=$(git rev-parse --show-toplevel)
out_rel=$(bazel cquery --output=files "${label}")
out_loc="$(realpath "${repository_root}/${out_rel}")"
cp "${out_loc}" "${OUTPUT_PATH}"
chmod +w "${OUTPUT_PATH}"
2022-09-02 06:44:20 -04:00
echo "::endgroup::"