Files
ortools-clone/.github/workflows/make_linux_cpp.yml
Laurent Perron dc4e3f3689 fix
2022-02-21 16:38:34 +01:00

25 lines
572 B
YAML

name: Make Linux C++
on: [push, pull_request]
jobs:
# Building using the github runner environement directly.
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check make
run: make --version
- name: Check system
run: make detect_port
- name: Check C++
run: make detect_cc
- name: Build third party
run: make third_party -j4
- name: Build C++
run: make compile_libraries -j4
- name: Test C++
run: make test_cc
- name: Install
run: make install_cc DESTDIR=install