You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run_integration_tests.sh 264B

123456789101112
  1. #!/bin/bash
  2. # Run integration tests with a given version of SonarQube
  3. # Usage: run_integration_tests.sh "5.2"
  4. set -euo pipefail
  5. # required version of SonarQube
  6. SONARQUBE_VERSION=$1
  7. shift
  8. cd it
  9. mvn verify -Dsonar.runtimeVersion=$SONARQUBE_VERSION -e -B -V -U $*