WIP #19
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 Binaries | |
# on: | |
# push: | |
# tags: | |
# - v** # TODO: add regex for version numbers | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # do not stop all builds if one fails | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2.2.0 | |
- name: Install dependencies | |
run: | | |
conda install -c conda-forge scip | |
- name: Upload header files | |
if: matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: headers | |
path: /usr/share/miniconda/include | |
# - name: Upload artifacts | |
# if: matrix.os == 'ubuntu-latest' | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: libscip | |
# path: /usr/share/miniconda/lib | |
# /usr/share/miniconda | |
# /usr/local/miniconda | |