updates #1
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: C | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/C.yml' | |
- 'src/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/C.yml' | |
- 'src/**' | |
concurrency: | |
group: ${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
if: "! contains(github.event.head_commit.message, '[skip ci]')" | |
name: Build C code on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
#os: [windows-latest, macOS-latest, ubuntu-latest] | |
os: [macOS-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install GSL | |
if: runner.os == 'macOS' | |
run: brew install gsl | |
- name: Install GSL | |
if: runner.os == 'Windows' | |
run: | | |
pushd $RUNNER_TEMP | |
curl --silent --show-error -L https://github.com/rwinlib/gsl/archive/v2.7.zip -o gsl.zip | |
7z x gsl.zip | |
popd | |
cat<<EOF > Makevars.win | |
# Set by Github Actions | |
GSL_CFLAGS = -I${RUNNER_TEMP}/gsl-2.7/include | |
GSL_LIBS = -L"$(RUNNER_TEMP)/gsl-2.7/lib/x64" -lgsl -lgslcblas | |
EOF | |
cat Makevars.win | |
shell: bash | |
- run: make -C src all DEBUG=1 WARN_FLAGS='-Werror' | |
- run: make -C src all DEBUG=0 WARN_FLAGS='-Werror' | |
- name: Functional tests | |
run: | | |
./bin/dominatedsets --help | |
./bin/dominatedsets --help | |
./bin/eaf --help | |
./bin/epsilon --help | |
./bin/hv --help | |
./bin/igd --help | |
./bin/ndsort --help | |
./bin/nondominated --help | |