2 Star 6 Fork 0

Rick/autotest.webdriver.downloader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Jenkinsfile 981 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rick 提交于 2017-08-01 21:07 +08:00 . add linux chrome driver config
node {
def mvnHome
stage('Preparation') {
git 'https://github.com/LinuxSuRen/autotest.webdriver.downloader.git'
mvnHome = tool 'M3'
}
stage('Build') {
if(isUnix()){
sh "'${mvnHome}/bin/mvn' clean package"
}else{
bat(/"${mvnHome}\bin\mvn" clean package/)
}
}
stage('Deploy') {
if(isUnix()){
sh "'${mvnHome}/bin/mvn' deploy -DsignSkip=false -DdocSkip=false"
}else{
bat(/"${mvnHome}\bin\mvn" deploy -DsignSkip=false -DdocSkip=false/)
}
}
}
properties([
[
$class: 'GithubProjectProperty',
displayName: 'autotest.webdriver.downloader',
projectUrlStr: 'https://github.com/LinuxSuRen/autotest.webdriver.downloader'
],
buildDiscarder(
logRotator(
artifactDaysToKeepStr: '',
artifactNumToKeepStr: '',
daysToKeepStr: '7',
numToKeepStr: '14'
)
),
pipelineTriggers([
pollSCM('H/15 * * * *')
])
])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/linuxsuren/autotest.webdriver.downloader.git
git@gitee.com:linuxsuren/autotest.webdriver.downloader.git
linuxsuren
autotest.webdriver.downloader
autotest.webdriver.downloader
master

搜索帮助