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"){ 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"
} }
} }
} }