Skip to content

Commit

Permalink
Increase parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
kinkie committed Dec 17, 2024
1 parent 3d02142 commit d004f1d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@ jobs:
continue-on-error: true # TODO: before landing in production

strategy:
max-parallel: 4 # TODO: lower to 2 when landing
max-parallel: 12 # TODO: lower to 2 when landing
matrix:
compiler:
- { CC: gcc, CXX: g++ }
- { CC: clang, CXX: clang++ }
layer:
- { name: layer-00-default, nick: default }
- { name: layer-01-minimal, nick: minimal }
- { name: layer-02-maximus, nick: maximus }
platform:
# - amd64 # is tested in native workflows, do not enable here
- arm
Expand All @@ -46,13 +53,6 @@ jobs:
- ubuntu-jammy
- ubuntu-noble # EOL 2036-04
- ubuntu-oracular # EOL 2025-07
compiler:
- { CC: gcc, CXX: g++ }
- { CC: clang, CXX: clang++ }
layer:
- { name: layer-00-default, nick: default }
- { name: layer-01-minimal, nick: minimal }
- { name: layer-02-maximus, nick: maximus }
exclude: # obtained by running "make exclude-list" in https://github.com/kinkie/dockerfiles
- { platform: i386, os: centos-stream-9 }
- { platform: i386, os: fedora-40 }
Expand Down

0 comments on commit d004f1d

Please sign in to comment.