File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments