Skip to content

Commit

Permalink
Merge pull request #31810 from vespa-engine/aressem/no-git-setup-in-s…
Browse files Browse the repository at this point in the history
…cripts

Git setup done elsewhere and fix env var name.
  • Loading branch information
jonmv authored Jul 2, 2024
2 parents da6678c + 20f8e16 commit 1734978
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions screwdriver/release-rpms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,10 @@ if [[ "$VESPA_RELEASE" == "$VESPA_RPM_X86_64" ]] && [[ "$VESPA_RELEASE" == "$VE
fi

echo "Using vespa repository git reference: $VESPA_REF"
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
ssh-add -D
set +x
ssh-add <(echo $VESPA_DEPLOY_TOKEN | base64 -d)
set -x
git config --global user.email "[email protected]"
git config --global user.name "Vespa Builder"
git clone [email protected]:vespa-engine/vespa

cd vespa
Expand Down
2 changes: 1 addition & 1 deletion screwdriver/update-vespa-version-in-sample-apps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function wait_until_published {

ssh-add -D
set +x
ssh-add <(echo $SAMPLE_APPS_DEPLOY_KEY | base64 -d)
ssh-add <(echo $SAMPLE_APPS_DEPLOY_TOKEN | base64 -d)
set -x

git clone [email protected]:vespa-engine/sample-apps.git
Expand Down

0 comments on commit 1734978

Please sign in to comment.