This repository has been archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
65 lines (57 loc) · 2.41 KB
/
.travis.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
language: java
os: linux
dist: bionic
addons:
mariadb: '10.4'
git:
depth: 1
quiet: true
before_install:
- sudo mysql -u root --password="" < ../predicting-refactoring-ml/scripts/mariadb_settings.sql
jobs:
include:
- stage: Test
name: "Test refactoringml - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=refactoringml.*Test test
- name: "Test Integration Toyproject - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=integration.toyprojects.*Test test
- name: "Test Integration Realproject ApacheCommonsCli - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=integration.realprojects.ApacheCommonsCli*Test test
- name: "Test Integration Realproject ApacheCommonsCSV - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=integration.realprojects.ApacheCommonsCSV*Test test
- name: "Run Canary ReactiveLocationIntegrationTest - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=integration.canaryprojects.ReactiveLocationIntegrationTest test
- name: "Run Canary TelegramServerIntegrationTest - Data-Collection: Java"
jdk: oraclejdk11
install:
- cd ../predicting-refactoring-ml/data-collection/
- mvn -f pom.xml -q -DskipTests clean compile package
script: mvn -f pom.xml -Dtest=integration.canaryprojects.TelegramServerIntegrationTest test
- name: "Test machine-learning - Machine-Learning: Python"
language: python
python: "3.7"
before_install:
- cd ../predicting-refactoring-ml/machine-learning/
- python -m pip install --upgrade pip
- python -m pip install --upgrade pytest
script: pytest