aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-12-14 20:54:04 -0500
committerGitHub <noreply@github.com>2022-12-14 20:54:04 -0500
commitc2f5848fe4dc3d3ffbebdbaaf8ff55fa2a9eb286 (patch)
tree714af317059e20a7c8f6f075c946a3a2f30fe5c6 /ci
parent4af305b30acdefb9da380b21b446d2b31b5a6295 (diff)
parentb911b54aeb45d2d2d7a8d616af5df04ad230bcc3 (diff)
downloadzig-c2f5848fe4dc3d3ffbebdbaaf8ff55fa2a9eb286.tar.gz
zig-c2f5848fe4dc3d3ffbebdbaaf8ff55fa2a9eb286.zip
Merge pull request #11594 from KaneRoot/master
Dir.statFile now uses fstatat (fewer syscalls)
Diffstat (limited to 'ci')
-rw-r--r--ci/aarch64-linux-debug.sh2
-rw-r--r--ci/aarch64-linux-release.sh2
-rwxr-xr-xci/x86_64-linux-debug.sh2
-rwxr-xr-xci/x86_64-linux-release.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/ci/aarch64-linux-debug.sh b/ci/aarch64-linux-debug.sh
index 0452b7d7dd..758085c759 100644
--- a/ci/aarch64-linux-debug.sh
+++ b/ci/aarch64-linux-debug.sh
@@ -67,7 +67,7 @@ stage3-debug/bin/zig build test docs \
--zig-lib-dir "$(pwd)/../lib"
# Look for HTML errors.
-tidy --drop-empty-elements no -qe ../zig-cache/langref.html
+tidy --drop-empty-elements no -qe "$ZIG_LOCAL_CACHE_DIR/langref.html"
# Produce the experimental std lib documentation.
stage3-debug/bin/zig test ../lib/std/std.zig -femit-docs -fno-emit-bin --zig-lib-dir ../lib
diff --git a/ci/aarch64-linux-release.sh b/ci/aarch64-linux-release.sh
index ef24accda4..59b7d7f9b9 100644
--- a/ci/aarch64-linux-release.sh
+++ b/ci/aarch64-linux-release.sh
@@ -67,7 +67,7 @@ stage3-release/bin/zig build test docs \
--zig-lib-dir "$(pwd)/../lib"
# Look for HTML errors.
-tidy --drop-empty-elements no -qe ../zig-cache/langref.html
+tidy --drop-empty-elements no -qe "$ZIG_LOCAL_CACHE_DIR/langref.html"
# Produce the experimental std lib documentation.
stage3-release/bin/zig test ../lib/std/std.zig -femit-docs -fno-emit-bin --zig-lib-dir ../lib
diff --git a/ci/x86_64-linux-debug.sh b/ci/x86_64-linux-debug.sh
index 6ee2ce9b89..069dc78657 100755
--- a/ci/x86_64-linux-debug.sh
+++ b/ci/x86_64-linux-debug.sh
@@ -66,7 +66,7 @@ stage3-debug/bin/zig build test docs \
--zig-lib-dir "$(pwd)/../lib"
# Look for HTML errors.
-tidy --drop-empty-elements no -qe ../zig-cache/langref.html
+tidy --drop-empty-elements no -qe "$ZIG_LOCAL_CACHE_DIR/langref.html"
# Produce the experimental std lib documentation.
stage3-debug/bin/zig test ../lib/std/std.zig -femit-docs -fno-emit-bin --zig-lib-dir ../lib
diff --git a/ci/x86_64-linux-release.sh b/ci/x86_64-linux-release.sh
index d9c1172b04..06f9e48c66 100755
--- a/ci/x86_64-linux-release.sh
+++ b/ci/x86_64-linux-release.sh
@@ -67,7 +67,7 @@ stage3-release/bin/zig build test docs \
--zig-lib-dir "$(pwd)/../lib"
# Look for HTML errors.
-tidy --drop-empty-elements no -qe ../zig-cache/langref.html
+tidy --drop-empty-elements no -qe "$ZIG_LOCAL_CACHE_DIR/langref.html"
# Produce the experimental std lib documentation.
stage3-release/bin/zig test ../lib/std/std.zig -femit-docs -fno-emit-bin --zig-lib-dir ../lib