Skip to content

Remove forgotten print #65

Remove forgotten print

Remove forgotten print #65

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
python-version: ["3.8"]
env:
CUTTING_STOCK_DATA: ${{ github.workspace }}/data/cutting_stock
MULTIPLE_KNAPSACK_DATA: ${{ github.workspace }}/data/multiple_knapsack
BIN_PACKING_WITH_CONFLICTS_DATA: ${{ github.workspace }}/data/bin_packing_with_conflicts
CAPACITATED_VEHICLE_ROUTING_DATA: ${{ github.workspace }}/data/capacitated_vehicle_routing
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 -u scripts/download_data.py
- name: Install CLP (MacOS)
run: |
brew install clp
if: ${{ (matrix.os == 'macos-13') || (matrix.os == 'macos-latest') }}
- 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 main
- 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_ref
- name: Process tests
run: python3 -u ./build/_deps/optimizationtools-src/scripts/process_tests.py --ref test_results_ref --new test_results