1 Star 0 Fork 0

zhengjunbo/sonarqube

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run-integration-tests.sh 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
Julien HENRY 提交于 2017-08-09 15:45 +08:00 . Clean IT logs
#!/bin/bash
# Run integration tests. SonarQube must be already built in order to
# make the ZIP file available for tests.
# Arguments:
# 1. the category of tests. Possible values: "Category1", "Category2" ,"Category3", "Category4", "Category5" and "Plugins"
# 2. the path to Orchestrator properties file. If empty, then default values are used. Example: "file:///Users/me/orchestrator.properties"
#
# Examples:
# ./run-integration-tests.sh "Category1" "file:///Users/me/orchestrator-mysql56.properties"
# ./run-integration-tests.sh "Category1" ""
set -euo pipefail
CATEGORY=$1
ORCHESTRATOR_CONFIG_URL=$2
shift 2
cd tests/plugins
mvn clean package -B -e -V
cd ..
mvn verify \
-Dcategory=$CATEGORY \
-Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \
-Dwith-db-drivers \
-B -e -V $*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhengjunbo/sonarqube.git
git@gitee.com:zhengjunbo/sonarqube.git
zhengjunbo
sonarqube
sonarqube
master

搜索帮助