forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 898 Bytes
/
Copy pathcmake_linux_arm_cpp.yml
File metadata and controls
31 lines (28 loc) · 898 Bytes
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
name: CMake Linux ARM C++
on: [push, pull_request]
# Building using the github runner environement directly.
jobs:
glop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build env image
run: make --directory=cmake arm_glop_env
- name: Build devel image
run: make --directory=cmake arm_glop_devel
- name: Build project
run: make --directory=cmake arm_glop_build
- name: Test project
run: make --directory=cmake arm_glop_test
or-tools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build env image
run: make --directory=cmake arm_or-tools_env
- name: Build devel image
run: make --directory=cmake arm_or-tools_devel
- name: Build project
run: make --directory=cmake arm_or-tools_build
- name: Test project
run: make --directory=cmake arm_or-tools_test