Skip to content

Commit

Permalink
Change timeout for test suites
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Bednarz committed Jan 12, 2021
1 parent b69bd45 commit 82d84ae
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- 2020.3
tags:
- '**'

Expand Down
18 changes: 15 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,30 @@ on: pull_request

jobs:
test:
timeout-minutes: 120
timeout-minutes: 50
runs-on: ubuntu-latest
name: test-${{ matrix.type }}
strategy:
matrix:
type: [probe 2.12.10, probe 2.13.1, scala 2.13.1, examples 2.13.1]
type: [probe 2.12.10, probe 2.13.1, scala 2.13.1]
steps:
- uses: actions/checkout@v2
- name: generate scripts
run: sbt ci/generateScripts
- name: build image
run: sh ci/tests/build_image
- name: test
run: sh ci/tests/run ${{ matrix.type }}

examples:
timeout-minutes: 120
runs-on: ubuntu-latest
name: test-examples 2.13.1
steps:
- uses: actions/checkout@v2
- name: generate scripts
run: sbt ci/generateScripts
- name: build image
run: sh ci/tests/build_image
- name: test
run: sh ci/tests/run ${{ matrix.type }}
run: sh ci/tests/run examples 2.13.1

0 comments on commit 82d84ae

Please sign in to comment.