Files
ortools-clone/.github/workflows/amd64_windows_make_cpp.yml
Corentin Le Molgat 86edf26855 ci: renaming files
2023-04-11 17:31:25 +02:00

24 lines
567 B
YAML

name: amd64 Windows Make C++
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
make:
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