From 30dee5efa7ff6eff320a9e6b2677e4dd22ccb260 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Fri, 4 Oct 2024 18:06:02 -0400 Subject: [PATCH] ci: lower all job timeouts because they shouldn't reasonably take that long and I would like it to be raised as a problem with my project if it ever starts exceeding the time specified --- .github/workflows/check-and-build-and-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-and-build-and-test.yml b/.github/workflows/check-and-build-and-test.yml index 7c7f050..7cc5cc5 100644 --- a/.github/workflows/check-and-build-and-test.yml +++ b/.github/workflows/check-and-build-and-test.yml @@ -12,7 +12,7 @@ env: jobs: formatting: runs-on: ubuntu-latest - timeout-minutes: 5 + timeout-minutes: 2 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -61,7 +61,7 @@ jobs: fail-fast: false # WIP: debugging name: Check and build ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) runs-on: ${{ matrix.supporteds.runner }} - timeout-minutes: 15 + timeout-minutes: 5 env: # https://github.com/rust-lang/stacker/issues/80#issuecomment-1547991131 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc @@ -126,7 +126,7 @@ jobs: target: x86_64-pc-windows-msvc name: Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) runs-on: ${{ matrix.supporteds.runner }} - timeout-minutes: 15 + timeout-minutes: 5 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -143,7 +143,7 @@ jobs: minimal-dependencies-check-build-and-test: runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: 5 steps: - name: Checkout repository uses: actions/checkout@v4