mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-01 00:10:12 +01:00
ab3833df91
Created bash scripts for different steps and added them as jobs for travis to execute. Begun preparing system testing: Goal is enabling actual servers with the plugin to see if it enables
10 lines
191 B
Bash
10 lines
191 B
Bash
cd Plan
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
|
mvn test
|
|
fi
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
|
mvn org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar
|
|
fi
|