Skip to content

Commit 57472ce

Browse files
committed
Test 1
1 parent 20ad119 commit 57472ce

10 files changed

+13
-81
lines changed

.github/workflows/ea-version.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/lts-version.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/test-actions-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm] # Include macos-latest for all except where overridden
15+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ] # Include macos-latest for all except where overridden
1616
build-system: ['maven', 'gradle', 'sbt']
1717
exclude:
1818
- build-system: 'sbt'

.github/workflows/test-architecture.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
16+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1717
java-version: [11, 17, 21 ]
1818
steps:
1919
- name: Checkout code
2020
uses: actions/checkout@v4
2121

2222
- name: Set up Java
23-
uses: actions/setup-java@v4
23+
uses: mahabaleshwars/setup-java@fix/graalvm-api-rate-limit
2424
with:
2525
distribution: 'graalvm'
2626
java-version: ${{ matrix.java-version }}
27-
architecture: x86
27+
architecture: x64
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
- name: Verify Java version

.github/workflows/test-cache-dependency-path.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
14+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1515
build-system: ['maven', 'gradle', 'sbt']
1616
exclude:
1717
- build-system: 'sbt'

.github/workflows/test-check-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
16+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4

.github/workflows/test-java-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
16+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
distribution: 'graalvm'
2525
java-version: '21'
26-
java-package: 'jre'
26+
java-package: 'jdk'
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929

.github/workflows/test-java-version-file.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
17+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1818
steps:
1919
- name: Checkout code
2020
uses: actions/checkout@v4

.github/workflows/test-java-version.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
16+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1717
java: [
18-
"11",
19-
"17",
2018
"21",
2119
'21.0.4',
2220
'17.0.12',
2321
]
24-
exclude:
25-
- os: windows-11-arm
26-
java: '11'
2722
steps:
2823
- uses: actions/checkout@v4
2924
- name: Set up Java ${{ matrix.java }}

.github/workflows/test-multiple-JDKs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
15+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
1616

1717
steps:
1818
- name: Checkout code
@@ -23,8 +23,8 @@ jobs:
2323
with:
2424
distribution: 'graalvm'
2525
java-version: |
26-
21
27-
17
26+
'21'
27+
'17.0.12'
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030

0 commit comments

Comments
 (0)