ci: add timeouts (#4912)

## Description

Add Timeouts to Github action jobs. The goal of adding timeouts is so if a job is hanging on something it gets killed and the author will get notified. 

I picked these times based on previous circle and Github action times then doubled & in some places tripled the times. 

Closes: #XXX
This commit is contained in:
Marko
2020-05-28 13:09:59 +00:00
committed by GitHub
parent aded0b0138
commit a27317dff0
4 changed files with 8 additions and 0 deletions
+4
View File
@@ -21,6 +21,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1
@@ -47,6 +48,7 @@ jobs:
test_abci_apps:
runs-on: ubuntu-latest
needs: Build
timeout-minutes: 4
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1
@@ -73,6 +75,7 @@ jobs:
test_abci_cli:
runs-on: ubuntu-latest
needs: Build
timeout-minutes: 4
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1
@@ -98,6 +101,7 @@ jobs:
test_apps:
runs-on: ubuntu-latest
needs: Build
timeout-minutes: 4
steps:
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1