Skip to content

Commit f890881

Browse files
Create Temurin.yml
1 parent ad85059 commit f890881

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/Temurin.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Test temurin 17
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
buildonv4:
8+
runs-on: ${{ matrix.os}}
9+
strategy:
10+
matrix:
11+
os: ['ubuntu-22.04','windows-latest','macos-13','macos-latest','ubuntu-24.04','ubuntu-22.04-arm','windows-11-arm']
12+
jdk: ['11','17','21']
13+
steps:
14+
- name: Setup Checkout
15+
uses: actions/checkout@v4
16+
- uses: actions/setup-java@v4
17+
with:
18+
distribution: 'temurin'
19+
java-package: 'jdk'
20+
java-version: ${{ matrix.jdk }}
21+
22+
buildonv5:
23+
runs-on: ${{ matrix.os}}
24+
strategy:
25+
matrix:
26+
os: ['ubuntu-22.04','windows-latest','macos-13','macos-latest','ubuntu-24.04','ubuntu-22.04-arm','windows-11-arm']
27+
jdk: ['11','17','21']
28+
steps:
29+
- name: Setup Checkout
30+
uses: actions/checkout@v5
31+
- uses: actions/setup-java@v5
32+
with:
33+
distribution: 'temurin'
34+
java-package: 'jdk'
35+
java-version: ${{ matrix.jdk }}

0 commit comments

Comments
 (0)