forked from apache/bookkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (39 loc) · 1.29 KB
/
ste-ci.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
name: Ste's Apache BookKeeper CI
on: [push]
env:
TESTED_SUBPROJECT: bookkeeper-server
BADUAVER: 0.4.0
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up java 21
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Build, test and determine control flow coverage
run: mvn -P adequacy-controlflow clean test
- name: Generate JaCoCo report
run: bash ste-ci-scripts/genjacocoreports.sh
- name: Copy JaCoCo report
run: bash ste-ci-scripts/aggacreports.sh
- name: Build, test and determine mutation score
run: mvn -P adequacy-mutation clean test org.pitest:pitest-maven:mutationCoverage
- name: Copy PIT report
run: bash ste-ci-scripts/aggacreports.sh
- name: Build, test and determine data flow coverage
run: bash ste-ci-scripts/all-dataflow.sh
- name: Copy ba-dua report
run: bash ste-ci-scripts/aggacreports.sh
- name: Run integration tests
run: mvn -DskipUnitTests=true clean verify
- name: Copy maven failsafe plugin report
run: bash ste-ci-scripts/aggacreports.sh
- uses: actions/upload-artifact@v4
with:
name: adequacy-reports
path: ac-reports/