Skip to content

Commit 7ec429e

Browse files
committed
syntax
1 parent 0e8afdd commit 7ec429e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-bazel.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
bazel:
77
runs-on: ${{ matrix.os }}
88
strategy:
9+
fail-fast: false
910
matrix:
1011
os: [macos-latest, ubuntu-latest, windows-latest]
1112

@@ -23,7 +24,12 @@ jobs:
2324
- name: test all
2425
run: bazel test --test_output=all //...
2526

26-
- name: test example
27+
- name: test example win
28+
if: runner.os == Windows
29+
run: ./bazel-bin/call-highs-example.exe
30+
31+
- name: test example linux and macos
32+
if: runner.os != Windows
2733
run: ./bazel-bin/call-highs-example
2834

2935
- name: Upload bazel-testlogs

0 commit comments

Comments
 (0)