Skip to content

Commit f1f10f7

Browse files
authored
Merge pull request #91 from fremling/master
Adding an exeption for the GIT CI tests
2 parents 6e36c75 + 6dbc0fd commit f1f10f7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

deps/build.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@ if get(ENV, "JULIA_REGISTRYCI_AUTOMERGE", "false") == "true"
100100
mlib = ""
101101
mker = "WolframKernel"
102102
@info "Pretending fake installation exists" mlib mker
103+
elseif get(ENV, "ULIA_PKG_SERVER_REGISTRY_PREFERENCE", "false") != "false"
104+
# We need to be able to install and load this package without error for
105+
# Githubs CI checker to work. Just write a fake Mathematica path.
106+
mlib = ""
107+
mker = "WolframKernel"
108+
@info "Pretending fake installation exists" mlib mker
103109
else
104110
mlib,mker = find_lib_ker()
105111
@info "Installation found" mlib mker

0 commit comments

Comments
 (0)