We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49b546 commit 06ed375Copy full SHA for 06ed375
1 file changed
.github/workflows/solver-tests.yml
@@ -35,7 +35,7 @@ jobs:
35
- package: 'Ipopt'
36
- package: 'KNITRO'
37
- package: 'MiniZinc'
38
- # - package: 'MosekTools' I need to fix this
+ - package: 'MosekTools'
39
- package: 'MathOptAnalyzer'
40
- package: 'MathOptIIS'
41
- package: 'MultiObjectiveAlgorithms'
@@ -172,11 +172,10 @@ jobs:
172
if: ${{ matrix.package == 'MosekTools' }}
173
shell: bash
174
run: |
175
- {
176
- echo "MOSEKLM_LICENSE_FILE<<EOF"
177
- echo "${{ secrets.MOSEK_LICENSE }}"
178
- echo "EOF"
179
- } >> $GITHUB_ENV
+ mkdir ~/mosek
+ echo "${MOSEK_LICENSE}" > ~/mosek/mosek.lic
+ env:
+ MOSEK_LICENSE: ${{ secrets.MOSEK_LICENSE }}
180
# Setup Xpress.jl
181
- name: Setup Xpress
182
if: ${{ matrix.package == 'Xpress' }}
0 commit comments