1
0
Fork 0

renamed pwsh to powershell

This commit is contained in:
Christian Kühnel 2019-11-29 14:10:07 +00:00
parent 15cc357b0a
commit 0ccd413c63

View file

@ -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"
}
}
}