renamed pwsh to powershell
This commit is contained in:
parent
15cc357b0a
commit
0ccd413c63
1 changed files with 5 additions and 5 deletions
10
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
10
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -27,8 +27,8 @@ 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'
|
||||||
pwsh 'git clean -fdx'
|
powershell 'git clean -fdx'
|
||||||
pwsh 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
|
powershell 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
|
||||||
dir("llvm-premerge-checks")
|
dir("llvm-premerge-checks")
|
||||||
{
|
{
|
||||||
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
||||||
|
@ -37,17 +37,17 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('CMake') {
|
stage('CMake') {
|
||||||
steps {
|
steps {
|
||||||
pwsh "${SCRIPT_DIR}/run_cmake.ps1"
|
powershell "${SCRIPT_DIR}/run_cmake.ps1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ninja all') {
|
stage('ninja all') {
|
||||||
steps {
|
steps {
|
||||||
pwsh "${SCRIPT_DIR}/run_ninja.ps1 all"
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ninja check-all') {
|
stage('ninja check-all') {
|
||||||
steps {
|
steps {
|
||||||
pwsh "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue