Append bzlmod flag in .bazelrc #494
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
name: CI | |
"on": | |
push: | |
branches: [main] | |
pull_request: | |
permissions: read-all | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
env: | |
USE_BAZEL_VERSION: ${{ matrix.bazel-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
bazel-version: ["5.x", "6.x", "7.x"] | |
os: ["ubuntu-latest", "macos-latest"] | |
bzlmod: ["--enable_bzlmod", "--noenable_bzlmod"] | |
exclude: | |
# Don't expect Bazel compatibility issues depending on OS, so speed this up | |
- bazel-version: "5.x" | |
os: "macos-latest" | |
- bazel-version: "6.x" | |
os: "macos-latest" | |
# No Bzlmod with Bazel 5 | |
- bazel-version: "5.x" | |
bzlmod: "--enable_bzlmod" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazelisk\n~/.cache/bazel\n" | |
key: bazel-${{ matrix.bazel-version }}-${{ matrix.os }}-${{ matrix.bzlmod }}-cache-${{ github.run_id }} | |
restore-keys: bazel-${{ matrix.bazel-version }}-${{ matrix.os }}-${{ matrix.bzlmod }}-cache- | |
- run: echo "common ${{ matrix.bzlmod}}" >> .bazelrc | |
if: ${{ matrix.bazel-version != '5.x' }} | |
- run: bazel test //... | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: trunk-io/trunk-action@v1 |