@@ -12,21 +12,21 @@ jobs:
12
12
matrix :
13
13
include :
14
14
# Build standard, native
15
- - { name: "windows - native", os: windows-2019, command: "test", config: "--config=windows", bazel_options: "--output_user_root=C:\\bazelroot", }
16
- - { name: "ubuntu - native", os: ubuntu-latest, command: "test", config: "--config=linux", bazel_options: "", }
17
- - { name: "macos - native", os: macos-latest, command: "test", config: "--config=macos", bazel_options: "", }
15
+ - { name: "windows - native", os: windows-2019, command: "test", config: "--config=windows", bazel_options: "--output_user_root=C:\\bazelroot", }
16
+ - { name: "ubuntu - native", os: ubuntu-latest, command: "test", config: "--config=linux", bazel_options: "", }
17
+ - { name: "macos - native", os: macos-latest, command: "test", config: "--config=macos", bazel_options: "", }
18
18
19
19
# Build bzlmod, native
20
- - { name: "windows - bzlmod native", os: windows-2019, command: "test", config: "--enable_bzlmod --config=windows", bazel_options: "--output_user_root=C:\\bazelroot", }
21
- - { name: "ubuntu - bzlmod native", os: ubuntu-latest, command: "test", config: "--enable_bzlmod --config=linux", bazel_options: "", }
22
- - { name: "macos - bzlmod native", os: macos-latest, command: "test", config: "--enable_bzlmod --config=macos", bazel_options: "", }
20
+ - { name: "windows - bzlmod native", os: windows-2019, command: "test", config: "--enable_bzlmod --config=windows", bazel_options: "--output_user_root=C:\\bazelroot", }
21
+ - { name: "ubuntu - bzlmod native", os: ubuntu-latest, command: "test", config: "--enable_bzlmod --config=linux", bazel_options: "", }
22
+ - { name: "macos - bzlmod native", os: macos-latest, command: "test", config: "--enable_bzlmod --config=macos", bazel_options: "", }
23
23
24
24
name : " Build - ${{ matrix.name }}"
25
25
runs-on : ${{ matrix.os }}
26
26
steps :
27
27
- uses : actions/checkout@v3
28
28
- uses : actions/setup-python@v4
29
- - run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} @rules_bzlmodrio_toolchains//...
29
+ - run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} --config=remote @rules_bzlmodrio_toolchains//...
30
30
working-directory : tests
31
31
- run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} --verbose_failures --config=remote //... || true
32
32
working-directory : tests
0 commit comments