aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Selkin <andreyselkin@gmail.com>2017-02-05 20:08:08 +0300
committerRoman Ivanov <romani@users.noreply.github.com>2017-02-05 11:03:28 -0800
commita52c7a7a8ae8500a46bd998a1782e96dc481325d (patch)
tree72763667c471af3391635e8f623f96d6ad894afc
parent0a1a3558493afcef3d8fec81f322f2332b78af2a (diff)
downloadcheckstyle-a52c7a7a8ae8500a46bd998a1782e96dc481325d.tar.gz
infra: fix cli arg names for launch.groovy
-rwxr-xr-x.ci/travis/travis.sh18
-rw-r--r--circle.yml4
-rw-r--r--wercker.yml2
3 files changed, 12 insertions, 12 deletions
diff --git a/.ci/travis/travis.sh b/.ci/travis/travis.sh
index c391d478d..0d578540b 100755
--- a/.ci/travis/travis.sh
+++ b/.ci/travis/travis.sh
@@ -72,7 +72,7 @@ no-exception-test-checkstyle-sevntu-checkstyle)
cd ../../
mvn clean install -Pno-validations
cd contribution/checkstyle-tester
- groovy ./launch.groovy --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config checks-nonjavadoc-error.xml
;;
no-exception-test-guava-with-google-checks)
@@ -95,7 +95,7 @@ no-exception-test-guava-with-google-checks)
mvn clean install -Pno-validations
sed -i.'' 's/warning/ignore/' src/main/resources/google_checks.xml
cd contribution/checkstyle-tester
- groovy ./launch.groovy --listOfProjects projects-for-travis.properties --checkstyleCfg ../../src/main/resources/google_checks.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config ../../src/main/resources/google_checks.xml
;;
no-exception-test-hibernate)
@@ -106,7 +106,7 @@ no-exception-test-hibernate)
cd ../../
mvn clean install -Pno-validations
cd contribution/checkstyle-tester
- groovy ./launch.groovy --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config 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 --listOfProjects projects-for-travis.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ groovy ./launch.groovy --listOfProjects projects-for-travis.properties --config checks-nonjavadoc-error.xml
;;
*)
diff --git a/circle.yml b/circle.yml
index 08aa21b98..7d6eeaffa 100644
--- a/circle.yml
+++ b/circle.yml
@@ -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 --listOfProjects projects-for-circle.properties --checkstyleCfg my_check.xml"
+ DEP3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy --listOfProjects projects-for-circle.properties --config 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 --listOfProjects projects-for-circle.properties --checkstyleCfg checks-nonjavadoc-error.xml"
+ CMD3: " && /home/ubuntu/checkstyle/groovy-2.4.7/bin/groovy launch.groovy --listOfProjects projects-for-circle.properties --config 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"
diff --git a/wercker.yml b/wercker.yml
index 2f1599029..1a7026e11 100644
--- a/wercker.yml
+++ b/wercker.yml
@@ -108,7 +108,7 @@ build:
name: NoExceptiontest - Apache Struts
code: >
git clone https://github.com/checkstyle/contribution && cd contribution/checkstyle-tester
- && groovy ./launch.groovy --listOfProjects projects-for-wercker.properties --checkstyleCfg checks-nonjavadoc-error.xml
+ && groovy ./launch.groovy --listOfProjects projects-for-wercker.properties --config checks-nonjavadoc-error.xml
&& cd ../../
&& rm -rf contribution