-
Notifications
You must be signed in to change notification settings - Fork 31
44 lines (41 loc) · 1.04 KB
/
stable.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
name: Stable branch
on:
schedule:
- cron: '0 0 * * 1'
jobs:
build:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
env:
ENVIRONMENT: CI
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
ref: 0.7.x
- 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 package -B --file pom.xml -DskipTests
- name: Test with Maven
run: mvn -B verify --file pom.xml
- 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