Skip to content

Commit f5fe114

Browse files
authored
Merge pull request #448 from SentryMan/ea
Add EA workflow
2 parents 4005c28 + 0619037 commit f5fe114

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

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

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
name: JDK 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+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
packages: write
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Java
21+
uses: oracle-actions/setup-java@v1
22+
with:
23+
website: jdk.java.net
24+
release: ea
25+
version: stable
26+
- name: Maven cache
27+
uses: actions/cache@v3
28+
env:
29+
cache-name: maven-cache
30+
with:
31+
path:
32+
~/.m2
33+
key: build-${{ env.cache-name }}
34+
- name: Maven version
35+
run: mvn --version
36+
- name: Build with Maven
37+
run: mvn clean verify package -Ptest

.github/workflows/jdk-ea.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name: avaje-http EA
33

44
on:
5+
pull_request:
56
workflow_dispatch:
67
schedule:
78
- cron: '39 1 * * 2,5'

0 commit comments

Comments
 (0)