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"){
|
||||
steps {
|
||||
git url: 'https://github.com/llvm/llvm-project.git'
|
||||
pwsh 'git clean -fdx'
|
||||
pwsh 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
|
||||
powershell 'git clean -fdx'
|
||||
powershell 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
|
||||
dir("llvm-premerge-checks")
|
||||
{
|
||||
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
||||
|
@ -37,17 +37,17 @@ pipeline {
|
|||
}
|
||||
stage('CMake') {
|
||||
steps {
|
||||
pwsh "${SCRIPT_DIR}/run_cmake.ps1"
|
||||
powershell "${SCRIPT_DIR}/run_cmake.ps1"
|
||||
}
|
||||
}
|
||||
stage('ninja all') {
|
||||
steps {
|
||||
pwsh "${SCRIPT_DIR}/run_ninja.ps1 all"
|
||||
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
|
||||
}
|
||||
}
|
||||
stage('ninja check-all') {
|
||||
steps {
|
||||
pwsh "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
||||
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue