added 2nd repo
This commit is contained in:
parent
5b4a99fa12
commit
eb09e72082
1 changed files with 14 additions and 10 deletions
24
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
24
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -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....'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue