-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (49 loc) · 1.23 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
name: Java CI with Tycho
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build ISA-95 mini-ERP webapp with Maven
run: |
cd example-isa95
mvn -B verify
- name: Build Orders Web Services with Maven
run: |
cd example-orders
mvn -pl '!grinder' -B verify
- name: Surefire Report
if: ${{ always() }}
uses: ScaCap/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
build-tooling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build tooling with Maven
run: |
cd workspace-metamodels
mvn -B verify
- name: Surefire Report
if: ${{ always() }}
uses: ScaCap/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}