File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 12
12
env :
13
13
PACKAGE : ${{ matrix.package }}
14
14
XPRESS_JL_SKIP_LIB_CHECK : " true"
15
+ # It's okay to share this secret with other packages because it is the public
16
+ # community-xpauth.xpr and not something confidential to JuMP-dev.
17
+ XPAUTH_XPR : ${{ secrets.XPAUTH_XPR }}
15
18
strategy :
16
19
fail-fast : false
17
20
matrix :
90
93
run : |
91
94
import Pkg
92
95
Pkg.develop(Pkg.PackageSpec(; path = pwd()))
96
+ if ENV["PACKAGE"] == "Xpress"
97
+ write("/opt/xpauth.xpr", ENV["XPAUTH_XPR"])
98
+ ENV["XPAUTH_PATH"] = "/opt/xpauth.xpr"
99
+ ENV["XPRESS_JL_SKIP_LIB_CHECK"] = true
100
+ end
93
101
Pkg.develop(ENV["PACKAGE"])
102
+ Pkg.build(ENV["PACKAGE"])
94
103
Pkg.test(ENV["PACKAGE"])
95
104
test-cplex :
96
105
name : ${{ matrix.package }}
You can’t perform that action at this time.
0 commit comments