Skip to content

Commit

Permalink
Add build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanf committed Apr 4, 2024
1 parent c18d261 commit 7afe968
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build

on: [push]

jobs:

build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, 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: Download data
run: |
python3 -m pip install gdown
python3 scripts/download_data.py
- name: Build
run: bazel build -- //...
- 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: bazel build -- //...
- name: Run tests
run: python3 -u scripts/run_tests.py test_results_ref
- name: Process tests
run: python3 ./bazel-setcoveringsolver/external/optimizationtools/scripts/process_tests.py --ref test_results_ref --new test_results

0 comments on commit 7afe968

Please sign in to comment.