From b2eb065fb8d67ed9dcfc35b7078d8b9b6fa86eaf Mon Sep 17 00:00:00 2001 From: Josh Day Date: Fri, 13 Dec 2024 13:56:27 -0500 Subject: [PATCH] actually fix for windows --- test/runtests.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index db73935..66e3b16 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,7 +6,6 @@ using Test depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), precompiled=false) @test !isdir(joinpath(depot, "compiled")) @test DepotDelivery.test(depot) -@test DepotDelivery._check_artifacts(depot, [".dll"]) depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), precompiled=true) @test isdir(joinpath(depot, "compiled")) @@ -17,6 +16,10 @@ depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), triplet="x86_64-w @test !isdir(joinpath(depot, "compiled")) @test DepotDelivery._check_artifacts(depot, [".dylib"]) +depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"), triplet="aarch64-apple-darwin") +@test !isdir(joinpath(depot, "compiled")) +@test DepotDelivery._check_artifacts(depot, [".dll"]) + #-----------------------------------------------------------------------------# Multiple Projects cd(joinpath(@__DIR__, "MultipleWorkflows")) do depot = DepotDelivery.build(readdir())