From 7afe9687e6803c7d47df3fb680aaa7409f6c8e10 Mon Sep 17 00:00:00 2001 From: Florian Fontan Date: Thu, 4 Apr 2024 22:44:26 +0200 Subject: [PATCH] Add build.yml --- .github/workflows/build.yml | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..b0b152e --- /dev/null +++ b/.github/workflows/build.yml @@ -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