Skip to content

Commit 61458b2

Browse files
committed
ci: disable explicit runfiles on all runs
Let windows have it off so that it does not fail buildifier test.
1 parent 8a3c3e9 commit 61458b2

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- {host: linux-x86_64, os: ubuntu-24.04, test: all_tests, shell: bash}
20-
- {host: macos-arm64, os: macos-15, test: all_tests, shell: bash}
21-
- {host: macos-x86_64, os: macos-15-intel, test: all_tests, shell: bash}
22-
- {host: windows-x86_64, os: windows-2022, test: local_bzlmod_test, shell: pwsh}
19+
- {host: linux-x86_64, os: ubuntu-24.04, target_pattern: "//...", shell: bash}
20+
- {host: macos-arm64, os: macos-15, target_pattern: "//...", shell: bash}
21+
- {host: macos-x86_64, os: macos-15-intel, target_pattern: "//...", shell: bash}
22+
- {host: windows-x86_64, os: windows-2022, target_pattern: "//examples:local_bzlmod_test", shell: pwsh}
2323
env:
2424
BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
2525
MSYS_NO_PATHCONV: 1
@@ -29,11 +29,10 @@ jobs:
2929

3030
- name: Run integration tests
3131
run: >-
32-
bazel test //:all //examples:${{ matrix.test }}
32+
bazel test ${{ matrix.target_pattern }}
3333
--bes_results_url=https://buildbuddy-toolchain.buildbuddy.io/invocation/
3434
--bes_backend=grpcs://buildbuddy-toolchain.buildbuddy.io
3535
--remote_cache=grpcs://buildbuddy-toolchain.buildbuddy.io
3636
--remote_timeout=2m
3737
--remote_header=x-buildbuddy-api-key="${{ env.BUILDBUDDY_API_KEY }}"
3838
--test_output=all
39-
--enable_runfiles

0 commit comments

Comments
 (0)