infra: Update CIs configs to use cli options names of launch.groovy
This commit is contained in:
parent
246661b42a
commit
3853b9ff4f
|
|
@ -72,7 +72,7 @@ no-exception-test-checkstyle-sevntu-checkstyle)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-guava)
|
||||
|
|
@ -83,7 +83,7 @@ no-exception-test-guava)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-guava-with-google-checks)
|
||||
|
|
@ -106,7 +106,7 @@ no-exception-test-hibernate)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-findbugs)
|
||||
|
|
@ -117,7 +117,7 @@ no-exception-test-findbugs)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-spring-framework)
|
||||
|
|
@ -128,7 +128,7 @@ no-exception-test-spring-framework)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-hbase)
|
||||
|
|
@ -139,7 +139,7 @@ no-exception-test-hbase)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-Pmd-elasticsearch-lombok-ast)
|
||||
|
|
@ -152,7 +152,7 @@ no-exception-test-Pmd-elasticsearch-lombok-ast)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
no-exception-test-alot-of-project1)
|
||||
|
|
@ -168,7 +168,7 @@ no-exception-test-alot-of-project1)
|
|||
cd ../../
|
||||
mvn clean install -Pno-validations
|
||||
cd contribution/checkstyle-tester
|
||||
groovy ./launch.groovy projects-for-travis.properties checks-nonjavadoc-error.xml
|
||||
groovy ./launch.groovy ---listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
|
||||
;;
|
||||
|
||||
*)
|
||||
|
|
|
|||
|
|
@ -19,10 +19,10 @@ machine:
|
|||
DEP1: " && sed -i.'' 's/^guava/#guava/' projects-to-test-on.properties"
|
||||
# we need this to let pass 'mvn site' on no-projects mode to download all dependecies
|
||||
DEP2: " && echo 'class ClassEmpty{}' > src/main/java/EmptyClass.java"
|
||||
DEP3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy projects-for-circle.properties my_check.xml"
|
||||
DEP3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy --listOfProjects projects-for-circle.properties --checkstyleCfg my_check.xml"
|
||||
TESTER_DEPENDENCIES: $CMD1$DEP1$DEP2$DEP3
|
||||
CMD2: " && sed -i.'' 's/^openjdk/#openjdk/' projects-for-circle.properties"
|
||||
CMD3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy projects-for-circle.properties checks-nonjavadoc-error.xml"
|
||||
CMD3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy --listOfProjects projects-for-circle.properties --checkstyleCfg checks-nonjavadoc-error.xml"
|
||||
OPENJDK7: " && sed -i.'' 's/#openjdk7/openjdk7/' projects-for-circle.properties"
|
||||
OPENJDK8: " && sed -i.'' 's/#openjdk8/openjdk8/' projects-for-circle.properties"
|
||||
OPENJDK9: " && sed -i.'' 's/#openjdk9/openjdk9/' projects-for-circle.properties"
|
||||
|
|
|
|||
|
|
@ -84,4 +84,4 @@ build:
|
|||
&& git clone https://github.com/checkstyle/contribution && cd contribution/checkstyle-tester
|
||||
&& cd ../../ && mvn clean install -Pno-validations
|
||||
&& cd contribution/checkstyle-tester
|
||||
&& groovy ./launch.groovy projects-for-wercker.properties checks-nonjavadoc-error.xml
|
||||
&& groovy ./launch.groovy --listOfProjects projects-for-wercker.properties --checksyleCfg checks-nonjavadoc-error.xml
|
||||
|
|
|
|||
Loading…
Reference in New Issue