-
-
Notifications
You must be signed in to change notification settings - Fork 40
68 lines (56 loc) · 1.78 KB
/
defects4j_math.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
name: defects4j_math
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Cache .m2
uses: actions/[email protected]
with:
path: "~/.m2/repository"
key: ${{ runner.os }}-m2
- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt'
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
maven-version: 3.6.0
- name: Install example projects
run: ./.github/install_examples.sh
shell: bash
- name: test_Math49
run: |
cd nopol
mvn -Dtest="fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest#test_Math49" test
env:
NOPOL_EVAL_DEFECTS4J: 1
- name: test_Math42
run: |
cd nopol
mvn -Dtest="fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest#test_Math42" test
env:
NOPOL_EVAL_DEFECTS4J: 1
- name: test_Math69
run: |
cd nopol
mvn -Dtest="fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest#test_Math69" test
env:
NOPOL_EVAL_DEFECTS4J: 1
# this test case was disabled in travis too
# - name: test_Math32
# run: |
# cd nopol
# mvn -Dtest="fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest#test_Math32" test
# env:
# NOPOL_EVAL_DEFECTS4J: 1
- name: test_Math33
run: |
cd nopol
mvn -Dtest="fr.inria.lille.repair.nopol.Defects4jEvaluationMathTest#test_Math33" test
env:
NOPOL_EVAL_DEFECTS4J: 1