mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
c3c0940adb
* bazel: add configuration for remote caching * ci: enable bazel remote caching for building binaries * ci: use bazel directly when building go binaries * ci: enable cache for most build steps * dev-docs: document remote caching
29 lines
875 B
YAML
29 lines
875 B
YAML
name: Build upgrade-agent
|
|
description: Build the Constellation upgrade-agent binary
|
|
|
|
inputs:
|
|
outputPath:
|
|
description: "Output path of the binary"
|
|
default: "./build/upgrade-agent"
|
|
required: true
|
|
|
|
# Linux runner only (Docker required)
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Build the upgrade-agent
|
|
shell: bash
|
|
env:
|
|
OUTPUT_PATH: ${{ inputs.outputPath }}
|
|
run: |
|
|
echo "::group::Build the upgrade-agent"
|
|
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}"
|
|
echo "::endgroup::"
|