CUS-345: CI: use self-hosted runners (#7) #2
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: | |
test-matrix: | |
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: Test with Bazel | |
run: | | |
# TODO(CUS-345): Enable remote execution | |
bazel test --config=noninteractive //... |