Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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 $*