3 Star 6 Fork 0

星火社区作品集 Spark Community Works / Spark-Store-New

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Jenkinsfile 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
柚子 提交于 2021-11-27 22:46 . 更新打包脚本
pipeline {
agent any
stages {
stage('build') {
agent {
docker {
image 'jerry979/dtke:5.11.1'
}
}
steps {
sh 'mkdir build && cd build && qmake .. && make '
archiveArtifacts(artifacts: 'build/src/spark-store', allowEmptyArchive: true, defaultExcludes: true)
}
}
stage('send') {
agent {
dockerfile {
filename '.gitee/Dockerfile'
}
}
environment {
gitee_token = credentials('1')
}
steps {
sh "python3 .gitee/callback.py"
}
}
}
}
C++
1
https://gitee.com/spark-community-works-collections/spark-store-new.git
git@gitee.com:spark-community-works-collections/spark-store-new.git
spark-community-works-collections
spark-store-new
Spark-Store-New
master

搜索帮助