-
Notifications
You must be signed in to change notification settings - Fork 6
72 lines (66 loc) · 2.52 KB
/
maven.yaml
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
62
63
64
65
66
67
68
69
70
71
72
name: Build Consumer Data Standards AU Reference Implementation Repository
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
branches:
- 'main'
types:
- labeled
jobs:
Build-repo-check:
if: ${{ contains(github.event.pull_request.labels.*.name, 'Ready-to-Build') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 8
- uses: actions/checkout@v3
- name: Set up Node 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup Maven settings.xml
uses: whelk-io/maven-settings-xml-action@v11
with:
mirrors: >
[
{
"id": "wso2-nexus",
"mirrorOf": "wso2-nexus",
"url": "http://maven.wso2.org/nexus/content/groups/wso2-public/"
},
{
"id": "wso2.releases",
"mirrorOf": "wso2.releases",
"url": "http://maven.wso2.org/nexus/content/repositories/releases/"
},
{
"id": "wso2.snapshots",
"mirrorOf": "wso2.snapshots",
"url": "http://maven.wso2.org/nexus/content/repositories/snapshots/"
},
{
"id": "knopflerfish",
"mirrorOf": "knopflerfish",
"url": "http://resources.knopflerfish.org/repo/maven2/release"
}
]
- name: Build with Maven
run: |
export MAVEN_OPTS="-Xmx8g -XX:MaxPermSize=512m"
mvn -B install --file pom.xml
# Repositories mirrored due to the use of HTTP repositories. Mirrors can be removed after the respective repositories
# are updated.
# [wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/, default, releases+snapshots),
# wso2.releases (http://maven.wso2.org/nexus/content/repositories/releases/, default, releases+snapshots),
# wso2.snapshots (http://maven.wso2.org/nexus/content/repositories/snapshots/, default, snapshots),
# knopflerfish (http://resources.knopflerfish.org/repo/maven2/release, default, releases+snapshots)]