Skip to content

Commit 946eace

Browse files
committed
use only one runner-image for github actions
reasons: - the project is not dependent on the OS, such that it would warrant testing/building against different OS versions - we did not see the benefit of having multiple OS versions so far - reduce build matrix cardinality. we have 20 jobs right now. it takes a while until all are finished. reducing this to 10 would be a substantial improvement.
1 parent 008bcf6 commit 946eace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
os: [ ubuntu-22.04, ubuntu-24.04 ]
9+
os: [ ubuntu-latest ]
1010
java: [ '17', '21' ]
1111
db: [ 'mysql:8.0', 'mariadb:10.3', 'mariadb:10.4.30', 'mariadb:10.5.21', 'mariadb:10.6.14' ]
1212
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)