-
Notifications
You must be signed in to change notification settings - Fork 2.2k
41 lines (36 loc) · 1.28 KB
/
amd64_linux_cmake_system_deps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Test or-tools using system wide install dependencies.
name: amd64 Linux CMake System Dependencies
on: [push, pull_request, workflow_dispatch]
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [system_deps]
lang: [cpp, python, dotnet, java]
fail-fast: false
env:
DISTRO: ${{ matrix.distro }}
LANG: ${{ matrix.lang }}
steps:
- uses: actions/checkout@v4
- name: Build base image
run: make --directory=cmake ${DISTRO}_base
- name: Build env image
run: make --directory=cmake ${DISTRO}_${LANG}_env
- name: Build devel image
run: make --directory=cmake ${DISTRO}_${LANG}_devel
- name: Build project
run: make --directory=cmake ${DISTRO}_${LANG}_build
- name: Test project
run: make --directory=cmake ${DISTRO}_${LANG}_test
- name: Build Install env image
run: make --directory=cmake ${DISTRO}_${LANG}_install_env
- name: Build Install devel image
run: make --directory=cmake ${DISTRO}_${LANG}_install_devel
- name: Build Install
run: make --directory=cmake ${DISTRO}_${LANG}_install_build
- name: Test Install
run: make --directory=cmake ${DISTRO}_${LANG}_install_test
# TODO(user): Add macOS + brew job
# TODO(user): Add Windows + choco/vcpkg job