Skip to content

change landing page for pdoc #146

change landing page for pdoc

change landing page for pdoc #146

name: amd64 Windows Bazel
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
bazel:
# ref: https://github.com/actions/runner-images
strategy:
matrix:
runner: [windows-2022, windows-2019]
fail-fast: false # Don't cancel all jobs if one fails.
runs-on: ${{ matrix.runner }}
#runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Check java
run: java -version
- name: Check mvn
run: mvn --version
- name: Install Bazel
run: |
choco install bazel
bazel --version
- name: Build
run: bazel build -c opt --cxxopt="/std:c++20" --subcommands=true //ortools/... //examples/...
- name: Test
run: bazel test -c opt --cxxopt="/std:c++20" --test_output=errors //ortools/... //examples/...