Skip to content

Commit c15b694

Browse files
committed
Update
1 parent 77c940a commit c15b694

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/MINLPTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- shell: julia --project=. --color=yes {0}
2525
run: |
2626
import Pkg
27-
Pkg.add(; name = "Gurobi_jll", version = "12.0.0")
27+
Pkg.add(; name = "Gurobi_jll", version = "12.0.1")
2828
- uses: julia-actions/julia-buildpkg@v1
2929
- shell: julia --color=yes {0}
3030
run: |

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@ jobs:
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
2020
arch: [x64]
2121
# v9.5.2 does not support the web license service
22-
jll_version: ['10.0.3', '11.0.1', '12.0.0']
22+
jll_version: ['10.0.3', '11.0.1', '12.0.1']
2323
include:
2424
- version: '1'
2525
os: macos-14
2626
arch: aarch64
27-
jll_version: '11.0.1'
27+
jll_version: '12.0.1'
2828
steps:
2929
- uses: actions/checkout@v4
3030
- uses: julia-actions/setup-julia@v2
3131
with:
3232
version: ${{ matrix.version }}
3333
arch: ${{ matrix.arch }}
3434
- uses: julia-actions/cache@v2
35-
- name: Install Gurobi license
35+
- shell: bash
3636
run: echo "${{ secrets.GUROBI_LICENSE }}" > ~/gurobi.lic
3737
- shell: julia --project=. --color=yes {0}
38+
env:
39+
GUROBI_JLL_VERSION: ${{ matrix.jll_version }}
3840
run: |
3941
import Pkg
4042
Pkg.add(; name = "Gurobi_jll", version = ENV["GUROBI_JLL_VERSION"])
41-
env:
42-
GUROBI_JLL_VERSION: ${{ matrix.jll_version }}
4343
- uses: julia-actions/julia-buildpkg@v1
4444
- uses: julia-actions/julia-runtest@v1
4545
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)