Skip to content

Commit 7e47b58

Browse files
use micromamba_jll rather than MKL_jll to test lazy artifacts (#772)
1 parent f911597 commit 7e47b58

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

examples/MyApp/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
1010
Example = "7876af07-990d-54b4-ab0e-23690620f79a"
1111
HelloWorldC_jll = "dca1746e-5efc-54fc-8249-22745bc95a49"
1212
LLVMExtra_jll = "dad2f222-ce93-54a1-a47d-0025e8a3acab"
13-
MKL_jll = "856f044c-d86e-5d09-b602-aeab76dc8ba7"
1413
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
14+
micromamba_jll = "f8abcde7-e9b7-5caa-b8af-a437887ae8e4"

examples/MyApp/src/MyApp.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if VERSION >= v"1.7.0"
99
using LLVMExtra_jll
1010
end
1111

12-
using MKL_jll
12+
using micromamba_jll
1313

1414
const myrand = rand()
1515

@@ -93,10 +93,10 @@ function real_main()
9393
end
9494
end
9595

96-
if isfile(MKL_jll.libmkl_core_path)
97-
println("MKL_jll path: ok!")
96+
if isfile(micromamba_jll.micromamba_path)
97+
println("micromamba_jll path: ok!")
9898
else
99-
println("MKL_jll path: fail!")
99+
println("micromamba_jll path: fail!")
100100
end
101101
return
102102
end

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ end
141141
if VERSION >= v"1.7-"
142142
@test occursin("LLVMExtra path: ok!", app_output)
143143
end
144-
@test occursin("MKL_jll path: ok!", app_output)
144+
@test occursin("micromamba_jll path: ok!", app_output)
145145

146146
# Test second app
147147
app_output = read(`$(app_path("SecondApp"))`, String)

0 commit comments

Comments
 (0)