Skip to content

Commit

Permalink
chore: force using bash due to syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jdobes committed Apr 22, 2024
1 parent 8d315d0 commit cbc6637
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pipeline {
stages {
stage('Initial setup') {
steps {
sh '''
sh '''#!/bin/bash
source "ci/functions.sh"
set_label_flags
Expand Down Expand Up @@ -90,7 +90,7 @@ pipeline {
steps {
script {
withVault([configuration: configuration, vaultSecrets: secrets]) {
sh '''
sh '''#!/bin/bash
curl -sSL "$CICD_INSTALL_SCRIPT" > .cicd_install_script && source ./.cicd_install_script && rm ./.cicd_install_script
export DOCKER_BUILDKIT=1
source $CICD_ROOT/build.sh
Expand All @@ -110,7 +110,7 @@ pipeline {
steps {
script {
withVault([configuration: configuration, vaultSecrets: secrets]) {
sh '''
sh '''#!/bin/bash
curl -sSL "$CICD_INSTALL_SCRIPT" > .cicd_install_script && source ./.cicd_install_script && rm ./.cicd_install_script
RELEASE_NAMESPACE="false"
source $CICD_ROOT/deploy_ephemeral_env.sh
Expand All @@ -133,7 +133,7 @@ pipeline {
}
steps {
withVault([configuration: configuration, vaultSecrets: secrets]) {
sh '''
sh '''#!/bin/bash
mkdir -p "$ARTIFACTS_DIR"
source ./ci/functions.sh
set +e
Expand Down

0 comments on commit cbc6637

Please sign in to comment.