engflow_auth: Migrate to CLI library (#15) #11
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
# Postsubmit checks that run on the `main` branch after merge. | |
name: "main" | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}.${{ github.ref }} | |
# Recommended here: https://github.com/bazelbuild/bazelisk/issues/88#issuecomment-625178467 | |
env: | |
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OPAL_RPC_CREDENTIALS: ${{ secrets.OPAL_RPC_CREDENTIALS }} | |
jobs: | |
bazel-builder: | |
runs-on: | |
- self-hosted | |
- os=linux | |
- arch=x64 | |
- os_distribution=debian | |
- os_version=12 | |
- revision=d04e89854b3931f4aaced77aa3a2fcad5834b3a6 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run all tests | |
run: | | |
# TODO(CUS-345): Enable remote execution | |
bazel test --config=noninteractive //... | |
golang-builder: | |
runs-on: | |
- self-hosted | |
- "os=${{ matrix.os }}" | |
- "arch=${{ matrix.arch }}" | |
- "os_distribution=${{ matrix.os_distribution }}" | |
- "os_version=${{ matrix.os_version }}" | |
- "revision=${{ matrix.revision }}" | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: "linux" | |
arch: "x64" | |
os_distribution: "debian" | |
os_version: "12" | |
revision: "d04e89854b3931f4aaced77aa3a2fcad5834b3a6" | |
- os: "macos" | |
arch: "x64" | |
os_distribution: "monterey" | |
os_version: "12" | |
revision: "d04e89854b3931f4aaced77aa3a2fcad5834b3a6" | |
- os: "windows" | |
arch: "x64" | |
os_distribution: "server" | |
os_version: "2022" | |
revision: "d04e89854b3931f4aaced77aa3a2fcad5834b3a6" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run all tests | |
run: | | |
# TODO(CUS-345): Enable remote execution | |
bazel run --config=noninteractive @rules_go//go -- test ./... | |
bazel run --config=noninteractive @rules_go//go -- clean -cache -modcache |