Skip to content

Commit ecbd513

Browse files
authored
Merge pull request #242 from SentryMan/ea-workflow
Adds EA stable workflow
2 parents 883a38a + d59d324 commit ecbd513

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build
22

3-
on: [push, workflow_dispatch]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
build:

.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: avaje-jsonb 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 package

.github/workflows/jdk-ea.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: JDK EA
33

44
on:
55
push:
6+
pull_request:
67
workflow_dispatch:
78
schedule:
89
- cron: '39 6 * * 1,3,5'

0 commit comments

Comments
 (0)