diff options
author | Pierre Ossman <ossman@cendio.se> | 2023-03-25 13:12:13 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2023-03-25 19:10:40 +0100 |
commit | 9b9e2e6192905422d3eb2bb589a8b206e81d9240 (patch) | |
tree | dc61e7e5097d61b7b187dd8c2a8f0d893d49d562 /.github | |
parent | 9e3342baebc5ff9593e2bda1cfff47858ce154cb (diff) | |
download | tigervnc-9b9e2e6192905422d3eb2bb589a8b206e81d9240.tar.gz tigervnc-9b9e2e6192905422d3eb2bb589a8b206e81d9240.zip |
Limit GitHub action run times
We don't want a broken job to consume our entire quota, so make sure
things are killed if the stray too far from a normal runtime.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68ecaaa9..a34badb7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: build-linux: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v3 - name: Install dependencies @@ -29,6 +30,7 @@ jobs: build-windows: runs-on: windows-latest + timeout-minutes: 20 defaults: run: shell: msys2 {0} @@ -60,6 +62,7 @@ jobs: build-macos: runs-on: macos-latest + timeout-minutes: 20 steps: - uses: actions/checkout@v3 - name: Install dependencies @@ -81,6 +84,7 @@ jobs: build-java: runs-on: ubuntu-latest + timeout-minutes: 5 strategy: matrix: java: [ '8', '11', '16' ] @@ -103,6 +107,7 @@ jobs: path: java/build/VncViewer.jar build-packages: + timeout-minutes: 20 strategy: matrix: target: |