Skip to content

Commit 21cf262

Browse files
committed
Add build for EA stable
1 parent ad3bcc0 commit 21cf262

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/jdk-ea-stable.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
name: avaje-inject EA stable
3+
4+
on:
5+
push:
6+
pull_request:
7+
workflow_dispatch:
8+
schedule:
9+
- cron: '39 1 * * 1,3,5'
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ${{ matrix.os }}
15+
permissions:
16+
contents: read
17+
packages: write
18+
# strategy:
19+
# fail-fast: false
20+
# matrix:
21+
# java_version: [GA,EA] ## valhalla (fails javadoc)
22+
# os: [ubuntu-latest]
23+
24+
steps:
25+
- uses: actions/checkout@v3
26+
- name: Set up Java
27+
uses: oracle-actions/setup-java@v1
28+
with:
29+
website: jdk.java.net
30+
release: ea
31+
version: stable
32+
- name: Maven cache
33+
uses: actions/cache@v3
34+
env:
35+
cache-name: maven-cache
36+
with:
37+
path:
38+
~/.m2
39+
key: build-${{ env.cache-name }}
40+
- name: Maven version
41+
run: mvn --version
42+
- name: Build with Maven
43+
run: mvn package
44+

0 commit comments

Comments
 (0)