2022-12-29 11:50:11 -05:00
|
|
|
name: Build upgrade-agent
|
|
|
|
description: Build the Constellation upgrade-agent binary
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
outputPath:
|
|
|
|
description: "Output path of the binary"
|
2023-03-20 11:05:08 -04:00
|
|
|
default: "./build/upgrade-agent"
|
2022-12-29 11:50:11 -05:00
|
|
|
required: true
|
|
|
|
|
|
|
|
# Linux runner only (Docker required)
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Build the upgrade-agent
|
|
|
|
shell: bash
|
2023-03-20 11:05:08 -04:00
|
|
|
env:
|
|
|
|
OUTPUT_PATH: ${{ inputs.outputPath }}
|
2022-12-29 11:50:11 -05:00
|
|
|
run: |
|
|
|
|
echo "::group::Build the upgrade-agent"
|
2023-03-20 11:05:08 -04:00
|
|
|
mkdir -p "$(dirname "${OUTPUT_PATH}")"
|
|
|
|
label="//upgrade-agent/cmd:upgrade_agent_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-12-29 11:50:11 -05:00
|
|
|
echo "::endgroup::"
|