Skip to content

Commit

Permalink
reduce timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementTsang committed Sep 5, 2024
1 parent eaba2c7 commit 35b8360
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 33 deletions.
34 changes: 5 additions & 29 deletions .github/workflows/build_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: "Build binaries"
runs-on: ${{ matrix.info.os }}
container: ${{ matrix.info.container }}
timeout-minutes: 30
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
build-msi:
name: "Build MSI installer"
runs-on: "windows-2019"
timeout-minutes: 30
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -276,34 +276,10 @@ jobs:
name: "release-build-msi"
path: release

# build-vm:
# name: "Build using VMs"
# runs-on: "ubuntu-latest"
# timeout-minutes: 30
# strategy:
# fail-fast: false
# matrix:
# info:
# - {
# type: "freebsd",
# os_release: "14.1",
# target: "x86_64-unknown-freebsd",
# }
# - {
# type: "freebsd",
# os_release: "13.3",
# target: "x86_64-unknown-freebsd",
# }
# steps:
# - name: Checkout repository
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
# with:
# fetch-depth: 1

build-cirrus:
name: "Build using Cirrus CI"
runs-on: "ubuntu-latest"
timeout-minutes: 30
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -341,7 +317,7 @@ jobs:
build-deb:
name: "Build .deb software packages"
runs-on: "ubuntu-20.04"
timeout-minutes: 30
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -469,7 +445,7 @@ jobs:
name: "Build .rpm software packages"
runs-on: ubuntu-latest
container: ghcr.io/clementtsang/almalinux-8
timeout-minutes: 30
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.info.os }}
timeout-minutes: 18
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
needs: pre-job
runs-on: ${{ matrix.info.os }}
if: ${{ needs.pre-job.outputs.should_skip != 'true' }}
timeout-minutes: 20
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
name: "Test using VMs"
needs: pre-job
runs-on: "ubuntu-latest"
timeout-minutes: 30
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.info.os }}
timeout-minutes: 18
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 35b8360

Please sign in to comment.