|
134 | 134 | @test readdir(joinpath(destdir(dir, platform), "logs")) == []
|
135 | 135 | end
|
136 | 136 |
|
| 137 | + # Make sure we can use `get_addable_spec` to install weird packages like |
| 138 | + # `LibOSXUnwind_jll` v0.0.6+1, see https://github.com/JuliaLang/Pkg.jl/issues/2942 |
| 139 | + with_temp_project() do dir |
| 140 | + prefix = Prefix(dir) |
| 141 | + spec = get_addable_spec("LibOSXUnwind_jll", v"0.0.6+1") |
| 142 | + dependencies = [BuildDependency(spec)] |
| 143 | + platform = Platform("x86_64", "macos"; julia_version="1.6.0") |
| 144 | + pkg_dir = Pkg.Operations.find_installed(spec.name, spec.uuid, spec.tree_hash) |
| 145 | + # Delete the directory where the package would be installed, to make sure it is |
| 146 | + # actually installed. Note: a cleaner way to do this would be to use a fresh |
| 147 | + # depot, but it'd add lots of complexity and this package isn't needed by any |
| 148 | + # sane project. |
| 149 | + rm(pkg_dir; recursive=true, force=true) |
| 150 | + # This is broken in v1.7, see https://github.com/JuliaLang/Pkg.jl/issues/2942 |
| 151 | + @test setup_dependencies(prefix, getpkg.(dependencies), platform) isa Vector{String} broken=VERSION<v"1.8.0-DEV" |
| 152 | + @test all(in(readdir(joinpath(destdir(dir, platform), "lib"))), ("libosxunwind.a", "libosxunwind.dylib")) broken=VERSION<v"1.8.0-DEV" |
| 153 | + # Make sure the right directory is installed. |
| 154 | + @test isdir(pkg_dir) broken=VERSION<v"1.8.0-DEV" |
| 155 | + end |
| 156 | + |
| 157 | + # Make sure we can install `libjulia_jll` for julia v1.6.0 |
| 158 | + with_temp_project() do dir |
| 159 | + prefix = Prefix(dir) |
| 160 | + dependencies = [BuildDependency("libjulia_jll")] |
| 161 | + platform = Platform("x86_64", "macos"; julia_version="1.6.0") |
| 162 | + # This is broken in v1.7, see https://github.com/JuliaLang/Pkg.jl/issues/2942 |
| 163 | + @test setup_dependencies(prefix, getpkg.(dependencies), platform) isa Vector{String} broken=VERSION<v"1.8.0-DEV" |
| 164 | + end |
| 165 | + |
137 | 166 | # Setup a dependency of a JLL package which is also a standard library
|
138 | 167 | with_temp_project() do dir
|
139 | 168 | prefix = Prefix(dir)
|
|
0 commit comments