remove noenable_bzlmod as workspace support is going away

This commit is contained in:
Dominic Hamon 2024-12-10 12:04:53 +00:00
parent b2b0aab464
commit b32ae9c9af

View File

@ -6,7 +6,7 @@ on:
jobs: jobs:
build_and_test_default: build_and_test_default:
name: bazel.${{ matrix.os }}.${{ matrix.bzlmod && 'bzlmod' || 'no_bzlmod' }} name: bazel.${{ matrix.os }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
fail-fast: false fail-fast: false
@ -28,8 +28,8 @@ jobs:
- name: build - name: build
run: | run: |
bazel build ${{ matrix.bzlmod && '--enable_bzlmod' || '--noenable_bzlmod' }} //:benchmark //:benchmark_main //test/... bazel build //:benchmark //:benchmark_main //test/...
- name: test - name: test
run: | run: |
bazel test ${{ matrix.bzlmod && '--enable_bzlmod' || '--noenable_bzlmod' }} --test_output=all //test/... bazel test --test_output=all //test/...