commit 55cc9dda66a24ed2a86a358533ecf5840d47b3d7 (tree)
parent 927bc5562988e7467bcf6e94cf1e2db9c46aa128
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Wed, 14 Aug 2024 00:17:25 +0200
ci: Enable -Dtest-slow-targets.
Diffstat:
10 files changed, 20 insertions(+), 10 deletions(-)
diff --git a/ci/aarch64-linux-debug.sh b/ci/aarch64-linux-debug.sh
@@ -62,7 +62,8 @@ stage3-debug/bin/zig build test docs \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
--zig-lib-dir "$PWD/../lib" \
- -Denable-tidy
+ -Denable-tidy \
+ -Dtest-slow-targets
# Ensure that updating the wasm binary from this commit will result in a viable build.
stage3-debug/bin/zig build update-zig1
diff --git a/ci/aarch64-linux-release.sh b/ci/aarch64-linux-release.sh
@@ -62,7 +62,8 @@ stage3-release/bin/zig build test docs \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
--zig-lib-dir "$PWD/../lib" \
- -Denable-tidy
+ -Denable-tidy \
+ -Dtest-slow-targets
# Ensure that stage3 and stage4 are byte-for-byte identical.
stage3-release/bin/zig build \
diff --git a/ci/aarch64-macos-debug.sh b/ci/aarch64-macos-debug.sh
@@ -55,4 +55,5 @@ stage3-debug/bin/zig build test docs \
-Denable-macos-sdk \
-Dstatic-llvm \
-Dskip-non-native \
- --search-prefix "$PREFIX"
+ --search-prefix "$PREFIX" \
+ -Dtest-slow-targets
diff --git a/ci/aarch64-macos-release.sh b/ci/aarch64-macos-release.sh
@@ -55,7 +55,8 @@ stage3-release/bin/zig build test docs \
-Denable-macos-sdk \
-Dstatic-llvm \
-Dskip-non-native \
- --search-prefix "$PREFIX"
+ --search-prefix "$PREFIX" \
+ -Dtest-slow-targets
# Ensure that stage3 and stage4 are byte-for-byte identical.
stage3-release/bin/zig build \
diff --git a/ci/aarch64-windows.ps1 b/ci/aarch64-windows.ps1
@@ -67,7 +67,8 @@ Write-Output "Main test suite..."
--search-prefix "$PREFIX_PATH" `
-Dstatic-llvm `
-Dskip-non-native `
- -Denable-symlinks-windows
+ -Denable-symlinks-windows `
+ -Dtest-slow-targets
CheckLastExitCode
# Ensure that stage3 and stage4 are byte-for-byte identical.
diff --git a/ci/x86_64-linux-debug.sh b/ci/x86_64-linux-debug.sh
@@ -70,7 +70,8 @@ stage3-debug/bin/zig build test docs \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
--zig-lib-dir "$PWD/../lib" \
- -Denable-tidy
+ -Denable-tidy \
+ -Dtest-slow-targets
# Ensure that updating the wasm binary from this commit will result in a viable build.
stage3-debug/bin/zig build update-zig1
diff --git a/ci/x86_64-linux-release.sh b/ci/x86_64-linux-release.sh
@@ -70,7 +70,8 @@ stage3-release/bin/zig build test docs \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
--zig-lib-dir "$PWD/../lib" \
- -Denable-tidy
+ -Denable-tidy \
+ -Dtest-slow-targets
# Ensure that stage3 and stage4 are byte-for-byte identical.
stage3-release/bin/zig build \
diff --git a/ci/x86_64-macos-release.sh b/ci/x86_64-macos-release.sh
@@ -59,7 +59,8 @@ stage3/bin/zig build test docs \
-Denable-macos-sdk \
-Dstatic-llvm \
-Dskip-non-native \
- --search-prefix "$PREFIX"
+ --search-prefix "$PREFIX" \
+ -Dtest-slow-targets
# Ensure that stage3 and stage4 are byte-for-byte identical.
stage3/bin/zig build \
diff --git a/ci/x86_64-windows-debug.ps1 b/ci/x86_64-windows-debug.ps1
@@ -68,7 +68,8 @@ Write-Output "Main test suite..."
-Dstatic-llvm `
-Dskip-non-native `
-Dskip-release `
- -Denable-symlinks-windows
+ -Denable-symlinks-windows `
+ -Dtest-slow-targets
CheckLastExitCode
Write-Output "Build x86_64-windows-msvc behavior tests using the C backend..."
diff --git a/ci/x86_64-windows-release.ps1 b/ci/x86_64-windows-release.ps1
@@ -67,7 +67,8 @@ Write-Output "Main test suite..."
--search-prefix "$PREFIX_PATH" `
-Dstatic-llvm `
-Dskip-non-native `
- -Denable-symlinks-windows
+ -Denable-symlinks-windows `
+ -Dtest-slow-targets
CheckLastExitCode
# Ensure that stage3 and stage4 are byte-for-byte identical.