-
Notifications
You must be signed in to change notification settings - Fork 8
72 lines (63 loc) · 2.07 KB
/
CI-tests.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
66
67
68
69
70
71
72
name: CI-tests
on:
push:
branches: [ master, lifelong ]
pull_request:
branches: [ master, lifelong ]
# cancel the previous run in the PR (only PR) if it's still in progress
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
run_unit_tests:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 18
cache: maven
- name: Check mvn version
run: mvn -version
- name: Build
run: mvn --batch-mode -DskipTests package
- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true -Djunit.jupiter.execution.parallel.mode.classes.default=same_thread "-Dtest=!*PerformanceBenchmarkTest*, !*LifelongSolverFactoryTest*" test
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Unit Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true
run_LL_factory_regression_test:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 18
cache: maven
- name: Check mvn version
run: mvn -version
- name: Build
run: mvn --batch-mode -DskipTests package
- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true -Djunit.jupiter.execution.parallel.mode.classes.default=same_thread -Dtest=LifelongSolverFactoryTest test
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Lifelong Factory Regression Test
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true