fix github action

This commit is contained in:
Laurent Perron
2023-05-14 08:00:18 +02:00
parent 9a9d5e1f38
commit f7e417f5ac

View File

@@ -24,6 +24,6 @@ jobs:
- name: Check Bazel
run: bazel version
- name: Build
run: bazel build -c opt --cxxopt=-std=c++17 --subcommands=true //ortools/... //examples/...
run: bazel build -c opt --action_env=BAZEL_CXXOPTS="-std=c++17" --subcommands=true //ortools/... //examples/...
- name: Test
run: bazel test -c opt --cxxopt=-std=c++17 --test_output=errors //ortools/... //examples/...
run: bazel test -c opt --action_env=BAZEL_CXXOPTS="-std=c++17" --test_output=errors //ortools/... //examples/...