-
Notifications
You must be signed in to change notification settings - Fork 31
65 lines (61 loc) · 1.59 KB
/
main.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
62
63
64
65
name: Java CI with Maven
on:
push:
branches: [ master ]
paths-ignore:
- '.gitignore'
- 'doc/**'
- '*.md'
- '*.txt'
tags: [ "*" ]
pull_request:
branches: [ master ]
paths-ignore:
- '.gitignore'
- 'doc/**'
- '*.md'
- '*.txt'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- {
name: "windows-latest",
build-options: "\"-Dquarkus.container-image.build=false\" -pl '!horreum-client, !horreum-integration-tests' -DskipITs -DskipTests"
}
- {
name: "ubuntu-latest",
build-options: ""
}
env:
ENVIRONMENT: CI
runs-on: ${{ matrix.os.name }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Maven Version
run: mvn --version
- name: Build with Maven
run: mvn clean install -B --file pom.xml -DskipTests -DskipITs ${{ matrix.os.build-options }}
- name: Test with Maven
run: mvn -B verify --file pom.xml ${{ matrix.os.build-options }}
- name: Upload artifact for failed workflow
if: failure()
uses: actions/upload-artifact@v3
with:
name: test logs
path: |
*/target/surefire-reports/*
test-suite/target/hyperfoil/*.log