forked from aparnajyothi-y/nodejs-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1002 Bytes
/
temurin.yml
File metadata and controls
37 lines (34 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Test temurin 17
on:
workflow_dispatch:
jobs:
buildonv4:
runs-on: ${{ matrix.os}}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-22.04','windows-latest','macos-13','macos-latest','ubuntu-24.04','ubuntu-22.04-arm','testtemurin']
jdk: ['11','17','21']
steps:
- name: Setup Checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-package: 'jdk'
java-version: ${{ matrix.jdk }}
buildonv5:
runs-on: ${{ matrix.os}}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-22.04','windows-latest','macos-13','macos-latest','ubuntu-24.04','ubuntu-22.04-arm','testtemurin']
jdk: ['11','17','21']
steps:
- name: Setup Checkout
uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-package: 'jdk'
java-version: ${{ matrix.jdk }}