-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (56 loc) · 1.95 KB
/
maven.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Maven
run: mvn -B install --file pom.xml
env:
MAVEN_OPTS: "-Dmaven.repo.local=${{ github.workspace }}/repository"
- name: Compile example to build Graal
uses: jbangdev/[email protected]
with:
script: examples/graal.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build Infinispan Quarkus native server
uses: jbangdev/[email protected]
with:
script: examples/infinispan_native.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build JDK
uses: jbangdev/[email protected]
with:
script: examples/jdk.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build Mandrel
uses: jbangdev/[email protected]
with:
script: examples/mandrel.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build Quarkus
uses: jbangdev/[email protected]
with:
script: examples/quarkus.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"