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