authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-14 00:36:13-07:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2023-10-14 00:36:13-07:00
log3be8490d826996dae4ce9c5564d0b2076b906f1f
tree81e999140c3773e8836e8ac9119b9ebf52616a92
parent1a6ba7e1cc4d26910f75141b88079de8f7ffc1aa
parente66e404d6156111ab58c23a30cbd126aefdea1f6
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Merge pull request #17242 from ziglang/ci-windows-tarballs

CI: update windows tarballs

5 files changed, 5 insertions(+), 7 deletions(-)

ci/x86_64-windows-debug.ps1+1-1
......@@ -1,5 +1,5 @@
11$TARGET = "$($Env:ARCH)-windows-gnu"
2$ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.203+d3bc1cfc4"
2$ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.888+130227492"
33$MCPU = "baseline"
44$ZIG_LLVM_CLANG_LLD_URL = "https://ziglang.org/deps/$ZIG_LLVM_CLANG_LLD_NAME.zip"
55$PREFIX_PATH = "$(Get-Location)\$ZIG_LLVM_CLANG_LLD_NAME"
ci/x86_64-windows-release.ps1+1-1
......@@ -1,5 +1,5 @@
11$TARGET = "$($Env:ARCH)-windows-gnu"
2$ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.203+d3bc1cfc4"
2$ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.888+130227492"
33$MCPU = "baseline"
44$ZIG_LLVM_CLANG_LLD_URL = "https://ziglang.org/deps/$ZIG_LLVM_CLANG_LLD_NAME.zip"
55$PREFIX_PATH = "$(Get-Location)\$ZIG_LLVM_CLANG_LLD_NAME"
test/standalone/c_compiler/build.zig+1-1
......@@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
55 const test_step = b.step("test", "Test it");
66 b.default_step = test_step;
77
8 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
8 if (builtin.os.tag == .windows) {
99 // https://github.com/ziglang/zig/issues/16965
1010 return;
1111 }
test/standalone/load_dynamic_library/build.zig+1-1
......@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
1010
1111 if (builtin.os.tag == .wasi) return;
1212
13 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
13 if (builtin.os.tag == .windows) {
1414 // https://github.com/ziglang/zig/issues/16960
1515 return;
1616 }
test/standalone/shared_library/build.zig+1-3
......@@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
44 const test_step = b.step("test", "Test it");
55 b.default_step = test_step;
66
7 if (@import("builtin").os.tag == .windows and
8 @import("builtin").cpu.arch == .aarch64)
9 {
7 if (@import("builtin").os.tag == .windows) {
108 // https://github.com/ziglang/zig/issues/16959
119 return;
1210 }