1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| version: 2.1
jobs:
do-something-with-another-repository:
docker:
- image: circleci/golang:1.11-stretch
steps:
- add_ssh_keys:
fingerprints:
- "aa:bb:cc:dd:ee:ff:gg:hh:ii:jj:kk:ll:mm:nn:oo:pp"
- run: GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" git clone git@github.com:aaaanwz/another-repository.git
- run: echo 'Do something'
workflows:
test:
jobs:
- do-something-with-another-repository
|