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:
110
110
Pkg.build(ENV["PACKAGE"])
111
111
Pkg.test(ENV["PACKAGE"])
112
112
test-cplex :
113
- name : ${{ matrix.package }}
113
+ name : CPLEX
114
114
runs-on : ubuntu-latest
115
- env :
116
- PACKAGE : ${{ matrix.package }}
117
- strategy :
118
- fail-fast : false
119
- matrix :
120
- include :
121
- - package : ' CPLEX'
122
115
steps :
123
116
- uses : actions/checkout@v4
124
117
- uses : julia-actions/setup-julia@v2
@@ -134,8 +127,8 @@ jobs:
134
127
run : |
135
128
import Pkg
136
129
Pkg.develop(Pkg.PackageSpec(; path = pwd()))
137
- Pkg.develop(ENV["PACKAGE"] )
138
- Pkg.test(ENV["PACKAGE"] )
130
+ Pkg.develop("CPLEX" )
131
+ Pkg.test("CPLEX" )
139
132
test-gurobi :
140
133
name : Gurobi
141
134
runs-on : ubuntu-latest
@@ -173,14 +166,14 @@ jobs:
173
166
ARTELYS_LIC_JUMP_DEV : ${{ secrets.ARTELYS_LIC_8326_JUMP_DEV_2023_11_02 }}
174
167
run : |
175
168
echo "$ARTELYS_LIC_JUMP_DEV" > ~/artelys_lic.txt
176
- - uses : julia-actions/julia-buildpkg@v1
169
+ - name : Test
170
+ shell : julia --color=yes {0}
177
171
env :
178
172
SECRET_KNITRO_URL : ${{ secrets.SECRET_KNITRO_URL }}
179
173
SECRET_KNITRO_LIBIOMP5 : ${{ secrets.SECRET_KNITRO_LIBIOMP5 }}
180
- - name : Test
181
- shell : julia --color=yes {0}
182
174
run : |
183
175
import Pkg
184
176
Pkg.develop(Pkg.PackageSpec(; path = pwd()))
185
177
Pkg.develop("KNITRO")
178
+ Pkg.build("KNITRO")
186
179
Pkg.test("KNITRO")
You can’t perform that action at this time.
0 commit comments