From 35ba8d95a1afd0bebba3c32cf68990f5129fabfe Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 24 May 2025 11:35:30 -0700 Subject: [PATCH] CI: bump maxrss for aarch64 linux Reduced number of runners from 9 to 6. This number is the total physical memory (251G) divided by the number of runners we have active (6). see previous commit 5b9e528bc550e7ea9e286fdd2324316f9895d5da --- ci/aarch64-linux-debug.sh | 2 +- ci/aarch64-linux-release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/aarch64-linux-debug.sh b/ci/aarch64-linux-debug.sh index 588e198bce..06ab47d597 100755 --- a/ci/aarch64-linux-debug.sh +++ b/ci/aarch64-linux-debug.sh @@ -50,7 +50,7 @@ ninja install # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. stage3-debug/bin/zig build test docs \ - --maxrss 24696061952 \ + --maxrss 44918199637 \ -Dstatic-llvm \ -Dtarget=native-native-musl \ --search-prefix "$PREFIX" \ diff --git a/ci/aarch64-linux-release.sh b/ci/aarch64-linux-release.sh index c47bbf3e42..ba80ca72c0 100755 --- a/ci/aarch64-linux-release.sh +++ b/ci/aarch64-linux-release.sh @@ -50,7 +50,7 @@ ninja install # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. stage3-release/bin/zig build test docs \ - --maxrss 24696061952 \ + --maxrss 44918199637 \ -Dstatic-llvm \ -Dtarget=native-native-musl \ --search-prefix "$PREFIX" \