19 Star 16 Fork 10

liq07lzucn / G4手册翻译

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Jenkinsfile 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
liq07lzucn 提交于 2021-07-11 16:56 . !40add pipeline
pipeline {
agent {
label 'master'
}
stages {
stage('Hello') {
steps {
script {
sh 'ls'
stash includes: 'book-xetex-UTF-8/**,*.sh', name: 'repo_stash'
timeout(activity: true, time: 600, unit: 'SECONDS') {
node(env.LABEL) {
unstash 'repo_stash'
sh 'ls -lat'
sh "bash -x build_and_runtest.sh"
try
{
sh 'ls -lat'
dir("book-xetex-UTF-8")
{
sh 'ls -lat'
// junit testResults:"report_gtest.xml", allowEmptyResults: false
archiveArtifacts artifacts: "*.pdf", fingerprint: true
}
}catch(exc)
{
echo 'no results in build dir'
}
}
}
}
}
}
}
post {
always{
cleanWs()
}
failure {
addGiteeMRComment comment: "+ CI build failure! [BUILD](" + env.RUN_DISPLAY_URL + ")"
}
aborted {
addGiteeMRComment comment: "+ CI build aborted! [BUILD](" + env.RUN_DISPLAY_URL + ")"
}
success{
addGiteeMRComment comment: "+ CI build success! [BUILD](" + env.RUN_DISPLAY_URL + ")"
// acceptGiteeMR("+auto merged with CI, CI build success! [BUILD](" + env.RUN_DISPLAY_URL + ")")
}
}
}
TeX/LaTeX
1
https://gitee.com/qiangge_666/latex_G4_manual_trans.git
git@gitee.com:qiangge_666/latex_G4_manual_trans.git
qiangge_666
latex_G4_manual_trans
G4手册翻译
master

搜索帮助