mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Build cdbg
|
|
description: Build the Constellation cdbg binary
|
|
|
|
inputs:
|
|
targetOS:
|
|
description: "Build CLI for this OS. [linux, darwin]"
|
|
required: true
|
|
default: "linux"
|
|
targetArch:
|
|
description: "Build CLI for this architecture. [amd64, arm64]"
|
|
required: true
|
|
default: "amd64"
|
|
outputPath:
|
|
description: "Output path of the binary"
|
|
default: "./build/cdbg"
|
|
required: false
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Build cdbg
|
|
shell: bash
|
|
env:
|
|
TARGET_GOOS: ${{ inputs.targetOS }}
|
|
TARGET_GOARCH: ${{ inputs.targetArch }}
|
|
OUTPUT_PATH: ${{ inputs.outputPath }}
|
|
run: |
|
|
echo "::group::Build cdbg"
|
|
mkdir -p "$(dirname "${OUTPUT_PATH}")"
|
|
label="//debugd/cmd/cdbg:cdbg_${TARGET_GOOS}_${TARGET_GOARCH}"
|
|
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::"
|