summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/projects/dlang/dub_package/test.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/projects/dlang/dub_package/test.lua b/tests/projects/dlang/dub_package/test.lua
index b76241be2..92168a8c1 100644
--- a/tests/projects/dlang/dub_package/test.lua
+++ b/tests/projects/dlang/dub_package/test.lua
@@ -2,5 +2,9 @@
function main(t)
-- build project
- t:build()
+ if is_host("macosx") and os.arch() ~= "arm64" then
+ t:build()
+ else
+ return t:skip("wrong host platform")
+ end
end