-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add buildx builder support to get_ssh_agent_image
- Loading branch information
1 parent
bd5c10e
commit ca289e8
Showing
7 changed files
with
79 additions
and
17 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
use-legacy-builder: True | ||
steps: | ||
clone: | ||
build: | ||
dockerfile: | | ||
FROM {{ DOCKER_REGISTRY }}/rockylinux:8.5 | ||
RUN yum install -y git-core openssh-clients && yum clean all | ||
run: | ||
ssh-keys: ['buildrunner-deploy'] | ||
cmds: | ||
- mkdir ~/.ssh | ||
- ssh-keyscan github.com > ~/.ssh/known_hosts | ||
- chmod 700 ~/.ssh | ||
- chmod 600 ~/.ssh/known_hosts | ||
# Clone into temp directory since the "buildrunner" directory may already exist | ||
- rm -rf /tmp/test-clone | ||
- git clone git@github.com:adobe/buildrunner.git /tmp/test-clone |
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