Update build.yml #430
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: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-latest] | |
python-version: ["3.8"] | |
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: Install dependencies | |
run: sudo apt-get -y install liblapack-dev libbz2-dev | |
if: matrix.os == 'ubuntu-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 unit tests | |
working-directory: build/test | |
run: ctest --output-on-failure --parallel | |
- name: Run tests | |
run: python3 -u scripts/run_tests.py test_results | |
- name: Checkout main branch | |
run: | | |
cp ./build/_deps/optimizationtools-src/scripts/process_tests.py ./process_tests.py | |
git remote set-branches origin '*' | |
git fetch --depth 1 | |
git checkout master | |
- 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 ./process_tests.py --ref test_results_ref --new test_results |