File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,8 @@ jobs:
110110 Pkg.build(ENV["PACKAGE"])
111111 Pkg.test(ENV["PACKAGE"])
112112 test-cplex :
113- name : ${{ matrix.package }}
113+ name : CPLEX
114114 runs-on : ubuntu-latest
115- env :
116- PACKAGE : ${{ matrix.package }}
117- strategy :
118- fail-fast : false
119- matrix :
120- include :
121- - package : ' CPLEX'
122115 steps :
123116 - uses : actions/checkout@v4
124117 - uses : julia-actions/setup-julia@v2
@@ -134,8 +127,8 @@ jobs:
134127 run : |
135128 import Pkg
136129 Pkg.develop(Pkg.PackageSpec(; path = pwd()))
137- Pkg.develop(ENV["PACKAGE"] )
138- Pkg.test(ENV["PACKAGE"] )
130+ Pkg.develop("CPLEX" )
131+ Pkg.test("CPLEX" )
139132 test-gurobi :
140133 name : Gurobi
141134 runs-on : ubuntu-latest
@@ -173,14 +166,14 @@ jobs:
173166 ARTELYS_LIC_JUMP_DEV : ${{ secrets.ARTELYS_LIC_8326_JUMP_DEV_2023_11_02 }}
174167 run : |
175168 echo "$ARTELYS_LIC_JUMP_DEV" > ~/artelys_lic.txt
176- - uses : julia-actions/julia-buildpkg@v1
169+ - name : Test
170+ shell : julia --color=yes {0}
177171 env :
178172 SECRET_KNITRO_URL : ${{ secrets.SECRET_KNITRO_URL }}
179173 SECRET_KNITRO_LIBIOMP5 : ${{ secrets.SECRET_KNITRO_LIBIOMP5 }}
180- - name : Test
181- shell : julia --color=yes {0}
182174 run : |
183175 import Pkg
184176 Pkg.develop(Pkg.PackageSpec(; path = pwd()))
185177 Pkg.develop("KNITRO")
178+ Pkg.build("KNITRO")
186179 Pkg.test("KNITRO")
You can’t perform that action at this time.
0 commit comments