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 cd1679f commit 6314e75
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') {
bash -c 'apt-get install unzip -y'
bash -c 'curl -fsSL https://bun.sh/install | bash'
bash -c 'source /root/.bashrc'
bash -c 'bun install'
sh 'apt-get install unzip -y'
sh 'curl -fsSL https://bun.sh/install | bash'
sh '. /root/.bashrc'
sh 'bun install'
// sh 'npm i --force'
}
}
Expand Down

0 comments on commit 6314e75

Please sign in to comment.