mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 19:40:48 -05:00
workflows: improve the jobs configuration
Reduce the timeout to 30 minutes for all the jobs, since it is enough. Set strategy.fail-fast to false, so that we can see the full logs.
This commit is contained in:
parent
232002f30f
commit
fa335d4166
2 changed files with 7 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -6,6 +6,9 @@ on:
|
|||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
strategy:
|
||||
fail-fast: false
|
||||
timeout-minutes: 30
|
||||
|
||||
jobs:
|
||||
compat:
|
||||
|
@ -28,7 +31,6 @@ jobs:
|
|||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
5
.github/workflows/eowyn.yml
vendored
5
.github/workflows/eowyn.yml
vendored
|
@ -9,6 +9,9 @@ on:
|
|||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
strategy:
|
||||
fail-fast: false
|
||||
timeout-minutes: 30
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -16,9 +19,9 @@ jobs:
|
|||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Zig
|
||||
uses: goto-bus-stop/setup-zig@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue