Skip to content

Commit

Permalink
feat(jenkinsfile): 🎉 add a new jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Nov 21, 2023
1 parent 6314e75 commit 2a6e3d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/Jenkinsfile-public-demo
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ pipeline {
stage('Install Depends') {
steps {
container('ubuntu') {
sh 'apt-get install unzip -y'
sh 'curl -fsSL https://bun.sh/install | bash'
sh '. /root/.bashrc'
sh 'bun install'
sh -e 'apt-get install unzip -y'
sh -e 'curl -fsSL https://bun.sh/install | bash'
sh -e '. /root/.bashrc'
sh -e 'bun install'
// sh 'npm i --force'
}
}
Expand Down

0 comments on commit 2a6e3d1

Please sign in to comment.