Skip to content

Commit c15f0e1

Browse files
author
Ray Zimmerman
committed
Disable (temporarily) inclusion of OSQP in CI on macOS runners.
1 parent a2568e5 commit c15f0e1

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@ jobs:
2727
- name: Include IPOPT?
2828
run: echo "INCLUDE_IPOPT=1" >> $GITHUB_ENV
2929

30-
- name: Include OSQP?
30+
- name: Include OSQP (Linux)?
31+
if: startsWith(matrix.os, 'ubuntu')
3132
run: echo "INCLUDE_OSQP=1" >> $GITHUB_ENV
3233

34+
- name: Include OSQP (macOS - Octave)?
35+
if: matrix.platform == 'octave' && startsWith(matrix.os, 'macos')
36+
run: echo "INCLUDE_OSQP=0" >> $GITHUB_ENV
37+
3338
- name: Cache IPOPT Libs (macOS)
3439
if: env.INCLUDE_IPOPT && startsWith(matrix.os, 'macos')
3540
id: cache-ipopt-libs

0 commit comments

Comments
 (0)