stop the zig build DOS attack on the CI infrastructure
aws-zig mach nominated build / build-zig-nightly (push) Failing after 9m53s Details
aws-zig nightly build / build-zig-nightly (push) Has been cancelled Details

This commit is contained in:
Emil Lerch 2024-04-02 12:43:43 -07:00
parent e6634d3c0f
commit 7bff6a5d15
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ jobs:
tar x -C /usr/local -f zig-linux-${ARCH}-${ZIG_VERSION}.tar.xz
ln -s /usr/local/zig-linux-${ARCH}-${ZIG_VERSION}/zig /usr/local/bin/zig
- name: Run tests
run: zig build test --verbose
run: zig build -j2 test --verbose
- name: Build example
run: ( cd example && zig build ) # Make sure example builds
# Zig package manager expects everything to be inside a directory in the archive,

View File

@ -35,7 +35,7 @@ jobs:
ln -s /usr/local/"${file%%.tar.xz}"/zig /usr/local/bin/zig
zig version
- name: Run tests
run: zig build test --verbose
run: zig build -j2 test --verbose
- name: Build example
run: ( cd example && zig build ) # Make sure example builds
# Zig package manager expects everything to be inside a directory in the archive,

View File

@ -33,7 +33,7 @@ jobs:
ln -s /usr/local/"${file%%.tar.xz}"/zig /usr/local/bin/zig
zig version
- name: Run tests
run: zig build test --verbose
run: zig build -j2 test --verbose
- name: Build example
run: ( cd example && zig build ) # Make sure example builds
# Zig package manager expects everything to be inside a directory in the archive,