2022-08-03 10:01:36 -04:00
|
|
|
name: Build debugd
|
|
|
|
description: Build the Constellation debugd binary
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
outputPath:
|
2022-09-02 06:44:20 -04:00
|
|
|
description: "Output path of the binary"
|
2023-03-20 11:05:08 -04:00
|
|
|
default: "./build/debugd"
|
2022-08-03 10:01:36 -04:00
|
|
|
required: true
|
|
|
|
|
2022-09-14 11:41:47 -04:00
|
|
|
# Linux runner only (homedir trick does not work on macOS, required for private runner)
|
2022-08-03 10:01:36 -04:00
|
|
|
runs:
|
2022-09-02 06:44:20 -04:00
|
|
|
using: "composite"
|
2022-08-03 10:01:36 -04:00
|
|
|
steps:
|
|
|
|
- name: Build debugd
|
|
|
|
shell: bash
|
2023-03-20 11:05:08 -04:00
|
|
|
env:
|
|
|
|
OUTPUT_PATH: ${{ inputs.outputPath }}
|
2022-08-03 10:01:36 -04:00
|
|
|
run: |
|
2022-09-02 06:44:20 -04:00
|
|
|
echo "::group::Build debugd"
|
2023-03-20 11:05:08 -04:00
|
|
|
mkdir -p "$(dirname "${OUTPUT_PATH}")"
|
|
|
|
label=//debugd/cmd/debugd:debugd_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::"
|