zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c166bb36f6cbb882eac42f5522b07837ef7bf550 (tree)
parent 78cba869289c66be875a72850437f95fe7541e92
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu,  4 Dec 2025 20:52:34 +0100

ci: reduce x86_64-linux timeouts

These excessive timeouts should no longer be necessary with the recent tuning of
job capacity and maxrss on these machines.

Diffstat:
M.forgejo/workflows/ci.yaml | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml @@ -152,7 +152,7 @@ jobs: fetch-depth: 0 - name: Build and Test run: sh ci/x86_64-linux-debug.sh - timeout-minutes: 240 + timeout-minutes: 180 x86_64-linux-debug-llvm: runs-on: [self-hosted, x86_64-linux] steps: @@ -162,7 +162,7 @@ jobs: fetch-depth: 0 - name: Build and Test run: sh ci/x86_64-linux-debug-llvm.sh - timeout-minutes: 480 + timeout-minutes: 360 x86_64-linux-release: runs-on: [self-hosted, x86_64-linux] steps: @@ -172,7 +172,7 @@ jobs: fetch-depth: 0 - name: Build and Test run: sh ci/x86_64-linux-release.sh - timeout-minutes: 480 + timeout-minutes: 360 x86_64-windows-debug: runs-on: [self-hosted, x86_64-windows]