-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (51 loc) · 2.2 KB
/
build.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8"]
env:
CAPACITATED_VEHICLE_ROUTING_DATA: ${{ github.workspace }}/data/capacitated_vehicle_routing
KNAPSACK_WITH_CONFLICTS_DATA: ${{ github.workspace }}/data/knapsack_with_conflicts
JOB_SEQUENCING_AND_TOOL_SWITCHING_DATA: ${{ github.workspace }}/data/job_sequencing_and_tool_switching
FLOWSHOP_SCHEDULING_DATA: ${{ github.workspace }}/data/flowshop_scheduling
SCHEDULING_WITH_SDST_TWT_DATA: ${{ github.workspace }}/data/scheduling_with_sdst_twt
SEQUENTIAL_ORDERING_DATA: ${{ github.workspace }}/data/sequential_ordering
TEAM_ORIENTEERING_DATA: ${{ github.workspace }}/data/team_orienteering
TIME_DEPENDENT_ORIENTEERING_DATA: ${{ github.workspace }}/data/time_dependent_orienteering
VEHICLE_ROUTING_WITH_TIME_WINDOWS_DATA: ${{ github.workspace }}/data/vehicle_routing_with_time_windows
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Download data
run: |
python3 -m pip install gdown
python3 scripts/download_data.py
- name: Build
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --parallel
cmake --install build --config Release --prefix install
- name: Run tests
run: python3 -u scripts/run_tests.py test_results
- name: Checkout main branch
run: |
git remote set-branches origin '*'
git fetch --depth 1
git checkout master
- name: Build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --parallel
cmake --install build --config Release --prefix install
- name: Run tests
run: python3 -u scripts/run_tests.py test_results_ref
- name: Process tests
run: python3 -u ./build/_deps/optimizationtools-src/scripts/process_tests.py --ref test_results_ref --new test_results