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

This commit is contained in:
J / Jacob Babich
2024-10-04 18:06:02 -04:00
parent 52297c7b43
commit 30dee5efa7

View File

@@ -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