@@ -12,21 +12,23 @@ 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: "windows arm - native", os: windows-2019, command: "build", config: "--config=windows_arm", bazel_options: "--output_user_root=C:\\bazelroot", }
17
+ - { name: "ubuntu - native", os: ubuntu-latest, command: "test", config: "--config=linux", bazel_options: "", }
18
+ - { name: "macos - native", os: macos-latest, command: "test", config: "--config=macos", bazel_options: "", }
18
19
19
20
# 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: "", }
21
+ - { name: "windows - bzlmod native", os: windows-2019, command: "test", config: "--enable_bzlmod --config=windows", bazel_options: "--output_user_root=C:\\bazelroot", }
22
+ - { name: "windows arm - bzlmod native", os: windows-2019, command: "build", config: "--enable_bzlmod --config=windows_arm", bazel_options: "--output_user_root=C:\\bazelroot", }
23
+ - { name: "ubuntu - bzlmod native", os: ubuntu-latest, command: "test", config: "--enable_bzlmod --config=linux", bazel_options: "", }
24
+ - { name: "macos - bzlmod native", os: macos-latest, command: "test", config: "--enable_bzlmod --config=macos", bazel_options: "", }
23
25
24
26
name : " Build - ${{ matrix.name }}"
25
27
runs-on : ${{ matrix.os }}
26
28
steps :
27
29
- uses : actions/checkout@v3
28
30
- uses : actions/setup-python@v4
29
- - run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} @bzlmodrio-opencv//...
31
+ - run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} --config=remote @bzlmodrio-opencv//...
30
32
working-directory : tests
31
33
- run : bazel ${{ matrix.bazel_options }} build -k ${{ matrix.config }} --verbose_failures --config=remote //... || true
32
34
working-directory : tests
0 commit comments