Skip to content

Commit

Permalink
chore: cut down on Docker Images built
Browse files Browse the repository at this point in the history
Our Docker image building matrix was gigantic, which was causing long build times and build nodes to run out of disk space and memory.

Cut down on the flavors we build.
  • Loading branch information
rix0rrr authored Aug 9, 2023
1 parent d005937 commit 52909f2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
matrix:
debian:
- 'buster' # 10
- 'bullseye' # 11
- 'bookworm' # 12
node: ['14', '16', '18', '20']
node: ['16', '18', '20']
include:
- debian: 'bullseye' # 11
node: '20'
- debian: 'bookworm' #12
node: '20'
env:
# Node version whose images will be aliased without the -nodeXX segment
DEFAULT_NODE_MAJOR_VERSION: 16
Expand Down

0 comments on commit 52909f2

Please sign in to comment.