We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a1db5 commit e2a7798Copy full SHA for e2a7798
.github/workflows/solver-tests.yml
@@ -12,6 +12,9 @@ jobs:
12
env:
13
PACKAGE: ${{ matrix.package }}
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 }}
18
strategy:
19
fail-fast: false
20
matrix:
@@ -88,6 +91,9 @@ jobs:
88
91
- name: Test
89
92
shell: julia --color=yes {0}
90
93
run: |
94
+ if ENV["PACKAGE"] == "Xpress"
95
+ write("xpauth.xpr", ENV["XPAUTH_XPR"])
96
+ end
97
import Pkg
98
Pkg.develop(Pkg.PackageSpec(; path = pwd()))
99
Pkg.develop(ENV["PACKAGE"])
0 commit comments