Skip to content

Commit b2eb065

Browse files
committed
actually fix for windows
1 parent 8ecad39 commit b2eb065

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ using Test
66
depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), precompiled=false)
77
@test !isdir(joinpath(depot, "compiled"))
88
@test DepotDelivery.test(depot)
9-
@test DepotDelivery._check_artifacts(depot, [".dll"])
109

1110
depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), precompiled=true)
1211
@test isdir(joinpath(depot, "compiled"))
@@ -17,6 +16,10 @@ depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), triplet="x86_64-w
1716
@test !isdir(joinpath(depot, "compiled"))
1817
@test DepotDelivery._check_artifacts(depot, [".dylib"])
1918

19+
depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), triplet="aarch64-apple-darwin")
20+
@test !isdir(joinpath(depot, "compiled"))
21+
@test DepotDelivery._check_artifacts(depot, [".dll"])
22+
2023
#-----------------------------------------------------------------------------# Multiple Projects
2124
cd(joinpath(@__DIR__, "MultipleWorkflows")) do
2225
depot = DepotDelivery.build(readdir())

0 commit comments

Comments
 (0)