We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2568e5 commit c15f0e1Copy full SHA for c15f0e1
1 file changed
.github/workflows/continuous-integration.yml
@@ -27,9 +27,14 @@ jobs:
27
- name: Include IPOPT?
28
run: echo "INCLUDE_IPOPT=1" >> $GITHUB_ENV
29
30
- - name: Include OSQP?
+ - name: Include OSQP (Linux)?
31
+ if: startsWith(matrix.os, 'ubuntu')
32
run: echo "INCLUDE_OSQP=1" >> $GITHUB_ENV
33
34
+ - name: Include OSQP (macOS - Octave)?
35
+ if: matrix.platform == 'octave' && startsWith(matrix.os, 'macos')
36
+ run: echo "INCLUDE_OSQP=0" >> $GITHUB_ENV
37
+
38
- name: Cache IPOPT Libs (macOS)
39
if: env.INCLUDE_IPOPT && startsWith(matrix.os, 'macos')
40
id: cache-ipopt-libs
0 commit comments