diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 04:30:44 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 04:30:44 +0000 |
commit | a500be604d8213553f2d3efe9b1969988cb6e402 (patch) | |
tree | be8a87e8a9d673870bb456ee36e829a800be5fd0 /.github | |
parent | Give artifacts unique name (diff) | |
download | miniserve-a500be604d8213553f2d3efe9b1969988cb6e402.tar.gz miniserve-a500be604d8213553f2d3efe9b1969988cb6e402.zip |
Limit CI jobs runtime to 30 minutes
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-release-binaries.yml | 1 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index c685871..1c0440c 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -6,6 +6,7 @@ jobs: binaries: name: ${{ matrix.os }} for ${{ matrix.target }} runs-on: ${{ matrix.os }} + timeout-minutes: 30 strategy: matrix: target: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f39ae6..457b331 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ jobs: ci: name: ${{ matrix.rust }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} + timeout-minutes: 30 strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] |