1
0
Fork 0

added 2nd repo

This commit is contained in:
Christian Kühnel 2019-10-17 17:52:11 +02:00
parent 5b4a99fa12
commit eb09e72082

View file

@ -22,22 +22,26 @@ pipeline {
stage("git checkout"){ stage("git checkout"){
steps { steps {
git url: 'https://github.com/llvm/llvm-project.git' git url: 'https://github.com/llvm/llvm-project.git'
// https://github.com/google/llvm-premerge-checks.git sh 'mkdir -p llvm-premerge-checks'
dir("llvm-premerge-checks")
{
git branch: "develop",
url: 'https://github.com/google/llvm-premerge-checks.git'
}
}
stage('CMake') {
steps {
echo 'Running CMake...'
} }
} }
stage('Build') { stage('ninja all') {
steps { steps {
echo 'Building..' echo 'Running ninja all..'
} }
} }
stage('Test') { stage('ninja check-all') {
steps { steps {
echo 'Testing..' echo 'Running ninja check-all....'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
} }
} }
} }