Skip to content

ci: fix bug

ci: fix bug #26

Workflow file for this run

name: "build and test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
# Cancel previous actions from the same PR or branch except 'main' branch.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency and https://docs.github.com/en/actions/learn-github-actions/contexts for more info.
group: concurrency-group::${{ github.workflow }}::${{ github.event.pull_request.number > 0 && format('pr-{0}', github.event.pull_request.number) || github.ref_name }}${{ github.ref_name == 'main' && format('::{0}', github.run_id) || ''}}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/[email protected]
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Keep a disk-cache
disk-cache: true
# disable repository cache between workflows.
repository-cache: false
# enable some flags for CI
bazelrc: |
import %workspace%/.aspect/bazelrc/ci.bazelrc
# disable cache for MODULE.bazel repos
external-cache: false
- run: bazelisk build //... && bazelisk test //...
e2e-workspace-matrix:
strategy:
matrix:
version: [6.x, 7.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/[email protected]
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Keep a disk-cache
disk-cache: true
# disable repository cache between workflows.
repository-cache: false
# disable cache for MODULE.bazel repos
external-cache: false
# enable some flags for CI
bazelrc: import %workspace%/../../.aspect/bazelrc/ci.bazelrc
- run: |
set -ex
cd e2e/non-bzlmod
export USE_BAZEL_VERSION=${{ matrix.version.version }}
bazelisk build //...
bazel test //...
e2e-bzlmod-matrix:
strategy:
matrix:
version: [6.x, 7.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bazel-contrib/[email protected]
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Keep a disk-cache
disk-cache: true
# disable repository cache between workflows.
repository-cache: false
# disable cache for MODULE.bazel repos
external-cache: false
# enable some flags for CI
bazelrc: |
import %workspace%/../../.aspect/bazelrc/ci.bazelrc
- run: |
set -ex
cd e2e/bzlmod
export USE_BAZEL_VERSION=${{ matrix.version.version }}
bazelisk build //...
bazel test //...