Files
ortools-clone/.github/workflows/amd64_windows_make_cpp.yml
Corentin Le Molgat bf030a732e ci: disable windows VS 2019 cpp build.
* Due to a bug in msvc fixed in VS Community 2022 preview 2
2023-07-21 16:43:45 +02:00

33 lines
820 B
YAML

name: amd64 Windows Make C++
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
make:
# 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: ilammy/msvc-dev-cmd@v1
- name: Check make
run: tools\make --version
- name: Check system
run: tools\make detect_port
- name: Check C++
run: make detect_cpp
- name: Build C++
run: tools\make cpp JOBS=4
- name: Test C++
run: tools\make test_cpp
- name: Create archive
run: tools\make archive_cpp