-
Notifications
You must be signed in to change notification settings - Fork 53
55 lines (50 loc) · 1.49 KB
/
build-binaries.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Build Constellation binaries as quality control
name: Build Constellation binaries
on:
workflow_dispatch:
push:
branches:
- main
- "release/**"
paths:
- "**.go"
- "**/go.mod"
- "**/go.sum"
pull_request:
paths:
- "**.go"
- "**/go.mod"
- "**/go.sum"
jobs:
build-binaries:
runs-on: [arc-runner-set]
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
- name: Setup bazel
uses: ./.github/actions/setup_bazel_nix
with:
useCache: "rbe"
rbePlatform: "ubuntu-22.04"
- name: Build all
shell: bash
env:
bootstrapper: "//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64"
debugd: "//debugd/cmd/debugd:debugd_linux_amd64"
cdbg: "//debugd/cmd/cdbg:all"
disk_mapper: "//disk-mapper/cmd:disk-mapper_linux_amd64"
measurement_reader: "//measurement-reader/cmd:measurement-reader_linux_amd64"
cli: "//cli:all"
terraform_provider: "//terraform-provider-constellation:all"
run: |
bazel build \
--remote_download_minimal \
"${bootstrapper}" \
"${debugd}" \
"${cdbg}" \
"${disk_mapper}" \
"${measurement_reader}" \
"${cli}" \
"${terraform_provider}"