Skip to content

CUS-345: CI: use self-hosted runners #16

CUS-345: CI: use self-hosted runners

CUS-345: CI: use self-hosted runners #16

Workflow file for this run

# Presubmit checks for PRs
name: "presubmit"
on:
# Trigger on pull request rather than push, so that we can control whether
# checks are run on a given PR (allowing checks to run automatically on PR
# updates from third parties can be a security issue).
pull_request:
concurrency:
group: ${{ github.workflow }}.${{ github.ref }}
cancel-in-progress: true
# 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: "debian"
os_version: "12"
revision: "d04e89854b3931f4aaced77aa3a2fcad5834b3a6"
steps:
- uses: actions/checkout@v4
- name: Test with Bazel
run: |
# TODO(CUS-345): Enable remote execution
bazel test --config=noninteractive //...