terraform: fix security rule reconciliation on Azure #8996
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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}" |