Skip to content

Commit

Permalink
Begin pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 13, 2024
1 parent a15f50a commit 5e1e094
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 15 deletions.
84 changes: 71 additions & 13 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
version:
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
Expand All @@ -31,21 +26,84 @@ jobs:
- 20
- 21
distribution:
- temurin
- zulu
- temurin
- liberica
- microsoft
- dragonwell
- corretto
- semeru
- oracle
- dragonwell
include:
- os: windows-latest
version: 21
os:
- 'macos-latest'
- 'ubuntu-latest'
exclude:
- os: macos-latest
distribution: dragonwell
- os: macos-latest
distribution: semeru
- os: ubuntu-latest
version: 8
distribution: semeru
- os: macos-latest
version: 8
distribution: temurin
- os: macos-latest
version: 21
version: 13
distribution: temurin
- os: macos-latest
version: 13
distribution: liberica
- os: macos-latest
version: 13
distribution: corretto
- os: macos-latest
version: 15
distribution: temurin
- os: macos-latest
version: 15
distribution: corretto
- os: macos-latest
version: 16
distribution: temurin
- os: macos-latest
version: 16
distribution: corretto
include:
- os: ubuntu-latest
version: 9
distribution: zulu
- os: ubuntu-latest
version: 21
distribution: microsoft
- os: ubuntu-latest
version: 17
distribution: microsoft
- os: ubuntu-latest
version: 16
distribution: microsoft
- os: ubuntu-latest
version: 11
distribution: microsoft
- os: ubuntu-latest
version: 21
distribution: oracle
- os: ubuntu-latest
version: 20
distribution: oracle
- os: ubuntu-latest
version: 19
distribution: oracle
- os: ubuntu-latest
version: 18
distribution: oracle
- os: ubuntu-latest
version: 17
distribution: oracle
# - os: windows-latest
# version: 21
# distribution: temurin
# - os: macos-latest
# version: 21
# distribution: temurin

runs-on: ${{ matrix.os }}

Expand Down
5 changes: 3 additions & 2 deletions java/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MVN?=mvn
MVN_FLAGS?= -e
BLUE=\033[0;34m
NC=\033[0m # No Color
NC=\033[0m # No Color

.PHONY: help
help:
Expand All @@ -21,7 +21,8 @@ target/jacoco.exec: ../LICENSE
test: target/jacoco.exec
@$(MVN) $(MVN_FLAGS) test -Dtest.single

test_auto: test_1C
test_auto: target/jacoco.exec
@$(MVN) $(MVN_FLAGS) test -T 1C

.PHONY: test_%
test_%: target/jacoco.exec
Expand Down

0 comments on commit 5e1e094

Please sign in to comment.