Update columngenerationsolver dependency #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.8"] | |
steps: | |
- name: Checkout code | |
uses: nschloe/action-cached-lfs-checkout@v1 | |
- 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 Linux | |
run: bazel build -- //... | |
if: matrix.os != 'windows-latest' | |
- name: Build Windows | |
run: bazel build --cxxopt=/MT -- //... | |
if: matrix.os == 'windows-latest' | |
- name: Run tests | |
run: python3 scripts/run_tests.py test_results | |
- name: Checkout main branch | |
run: git checkout main | |
- name: Build Linux | |
run: bazel build -- //... | |
if: matrix.os != 'windows-latest' | |
- name: Build Windows | |
run: bazel build --cxxopt=/MT -- //... | |
if: matrix.os == 'windows-latest' | |
- name: Run tests | |
run: python3 scripts/run_tests.py test_results_ref | |
- name: Process tests | |
run: python3 ./bazel-starobservationschedulingsolver/external/optimizationtools/scripts/process_tests.py --ref test_results_ref --new test_results |