Revision 75c38e3fdb0875bf0f5df3a7f0f6625556c9e2e8 authored by Mosè Giordano on 30 January 2024, 08:30:00 UTC, committed by GitHub on 30 January 2024, 08:30:00 UTC
As discussed in the `#ci-dev` call (see
https://github.com/JuliaLang/julia/issues/53103#issuecomment-1915458694
and
https://github.com/JuliaLang/julia/pull/53104#discussion_r1470021366)
there were two problems:

* the use of `Base.require` caused the package to be loaded
* the name of the package was a generic placeholder, and clashed with
other packages loaded during the tests called with the same generic
name.

The solution was to rename test module with a more specific name, and
replace `Base.require` with `Base.compilecache`, the latter only
compiles the package without loading it.

Should fix #53103, close #53104.
1 parent 9816a0b
Raw File
.gitignore
/*.tar.gz
/tmp
/dist
/dist-extras
/julia
/julia.bat
/usr
/oprofile_data
/usr-staging
/Make.user
/julia-*
/source-dist.tmp
/source-dist.tmp1

*.expmap
*.exe
*.dll
*.dwo
*.do
*.o
*.o.tmp
*.obj
*.so
*.dylib
*.dSYM
*.h.gen
*.jl.cov
*.jl.*.cov
*.jl.mem
*.jl.*.mem
*.ji

/perf*
.DS_Store
.idea/*
.vscode/*
*.heapsnapshot
.cache
# Buildkite: Ignore the entire .buildkite directory
/.buildkite

# Buildkite: Ignore the unencrypted repo_key
repo_key

# Buildkite: Ignore any agent keys (public or private) we have stored
agent_key*
back to top