automation: Add back Golang builds #20
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
# 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: | |
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: build all | |
run: | | |
# TODO(CUS-345): Enable remote execution | |
bazel run --config=noninteractive @rules_go//go -- build ./... | |
- name: run all tests | |
run: | | |
# TODO(CUS-345): Enable remote execution | |
bazel run --config=noninteractive @rules_go//go -- test ./... |