Skip to content

Commit bd06b57

Browse files
committed
Add valhalla EA build
1 parent 77383f4 commit bd06b57

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/valhalla.yml

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

0 commit comments

Comments
 (0)