From e8a837ea8ff1956a147a1a466dbfa3579a397cf5 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 27 Apr 2026 11:18:19 +1200 Subject: [PATCH 1/2] Test writing Mosek license to file --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f28a434..98cdfcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,9 +26,11 @@ jobs: arch: ${{ matrix.arch }} - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 + - shell: bash + run: | + mkdir ~/mosek + echo ${{ secrets.MOSEK_LICENSE }} > ~/mosek/mosek.lic - uses: julia-actions/julia-runtest@v1 - env: - MOSEKLM_LICENSE_FILE: ${{ secrets.MOSEK_LICENSE }} with: depwarn: error - uses: julia-actions/julia-processcoverage@v1 From 76a8470eda7df454f36457879719208ccf694912 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 27 Apr 2026 11:20:56 +1200 Subject: [PATCH 2/2] Update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98cdfcb..efa3299 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - shell: bash run: | mkdir ~/mosek - echo ${{ secrets.MOSEK_LICENSE }} > ~/mosek/mosek.lic + echo "${{ secrets.MOSEK_LICENSE }}" > ~/mosek/mosek.lic - uses: julia-actions/julia-runtest@v1 with: depwarn: error