diff --git a/.ci/run-link-check-plugin.sh b/.ci/run-link-check-plugin.sh index 8043aae09a1..8f8e7d36967 100755 --- a/.ci/run-link-check-plugin.sh +++ b/.ci/run-link-check-plugin.sh @@ -4,7 +4,7 @@ #Run "firefox target/site/linkcheck.html" after completion to review html report set -e - +pwd uname -a mvn --version curl -I https://sourceforge.net/projects/checkstyle/ diff --git a/.ci/travis/travis.sh b/.ci/travis/travis.sh index a995d58fedf..225b5045b65 100755 --- a/.ci/travis/travis.sh +++ b/.ci/travis/travis.sh @@ -4,6 +4,10 @@ set -e case $1 in +site) + mvn -e clean site -Pno-validations + ;; + nondex) mvn -e --fail-never clean nondex:nondex -DargLine='-Xms1024m -Xmx2048m' cat `grep -RlE 'td class=.x' .nondex/ | cat` < /dev/null > output.txt diff --git a/codeship-services.yml b/codeship-services.yml index 090786af323..e903a0c71c5 100644 --- a/codeship-services.yml +++ b/codeship-services.yml @@ -1,2 +1,4 @@ system: image: checkstyle/maven-builder-image:latest + volumes: + - .:/usr/local/checkstyle diff --git a/codeship-steps.yml b/codeship-steps.yml index 01ec0444304..344842dff06 100644 --- a/codeship-steps.yml +++ b/codeship-steps.yml @@ -1,4 +1,8 @@ -- name: linkcheck +- type: parallel tag: master service: system - command: ls -la && .ci/run-link-check-plugin.sh + steps: + #- command: ./.ci/travis/travis.sh site + #- command: ./.ci/travis/travis.sh nondex + - command: ls -la + - command: .ci/run-link-check-plugin.sh