-
Notifications
You must be signed in to change notification settings - Fork 615
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31810 from vespa-engine/aressem/no-git-setup-in-s…
…cripts Git setup done elsewhere and fix env var name.
- Loading branch information
Showing
2 changed files
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|