Skip to content

Commit

Permalink
- disable jit on macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed May 8, 2024
1 parent fea6c0e commit 920d6b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/copasi_se.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build and Test

on:
workflow_dispatch:
push:
paths:
- "**"
Expand Down Expand Up @@ -81,8 +82,15 @@ jobs:
curl -L http://bqfrank.spdns.org/Files/test-suite.zip -o test-suite.zip
unzip -n -qq test-suite.zip
- name: Configure COPASI (mac)
shell: bash
if: matrix.platform == 'macos-latest'
run: |
cmake -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCOPASI_INSTALL_C_API=ON -DSBML_TESTSUITE_RUN=ON -DBUILD_TESTS=ON -DBUILD_GUI=OFF -DENABLE_JIT=OFF -DCOPASI_DEPENDENCY_DIR=./dependencies/ -DCMAKE_INSTALL_PREFIX=./install/ -DBUILD_SBML_TESTSUITE:BOOL=ON -DSBML_TESTSUITE_CASES_DIR:PATH=$PWD/test-suite -S . -B ./build_copasi
- name: Configure COPASI
shell: bash
if: matrix.platform != 'macos-latest'
run: |
cmake -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCOPASI_INSTALL_C_API=ON -DSBML_TESTSUITE_RUN=ON -DBUILD_TESTS=ON -DBUILD_GUI=OFF -DCOPASI_DEPENDENCY_DIR=./dependencies/ -DCMAKE_INSTALL_PREFIX=./install/ -DBUILD_SBML_TESTSUITE:BOOL=ON -DSBML_TESTSUITE_CASES_DIR:PATH=$PWD/test-suite -S . -B ./build_copasi
Expand Down

0 comments on commit 920d6b1

Please sign in to comment.