Skip to content

Commit 156d25e

Browse files
authored
Merge pull request #7 from first-aml/main
Add additional option to skip ssh-keyscan, update README
2 parents 5b6024c + 5c25e10 commit 156d25e

File tree

4 files changed

+63
-3
lines changed

4 files changed

+63
-3
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Paths accepted by `git sparse-checkout set`.
2020

2121
Whether to pass `--no-cone` to `git sparse-checkout` so that the paths are considered to be a list of patterns.
2222

23+
#### `skip_ssh_keyscan` ('true' or 'false')
24+
25+
Whether to skip ssh-keyscan step. This will skip adding each ssh public key into the known-hosts file. Only use if ssh keys are already setup.
26+
2327
## Example
2428

2529
Below is an example for using sparse-checkout plugin.

hooks/checkout

+9-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@ else
1818
exit 1
1919
fi
2020

21-
echo "Scanning SSH keys for remote git repository"
22-
[[ -d ~/.ssh ]] || mkdir -p ~/.ssh
23-
ssh-keyscan "${BUILDKITE_REPO_SSH_HOST}" >> ~/.ssh/known_hosts
21+
SKIP_SSH_KEYSCAN_OPTION="$(plugin_read_config SKIP_SSH_KEYSCAN "false")"
22+
23+
if [ "$SKIP_SSH_KEYSCAN_OPTION" = "false" ]; then
24+
echo "Scanning SSH keys for remote git repository"
25+
[[ -d ~/.ssh ]] || mkdir -p ~/.ssh
26+
ssh-keyscan "${BUILDKITE_REPO_SSH_HOST}" >> ~/.ssh/known_hosts
27+
else
28+
echo "Skipped SSH keyscan"
29+
fi
2430

2531
echo "Creating sparse-checkout with paths: ${CHECKOUT_PATHS[*]}"
2632

plugin.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ configuration:
1010
no_cone:
1111
type: boolean
1212
default: false
13+
skip_ssh_keyscan:
14+
type: boolean
15+
default: false
1316
required:
1417
- paths
1518
additionalProperties: false

tests/checkout.bats

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/usr/bin/env bats
2+
3+
setup() {
4+
load "${BATS_PLUGIN_PATH}/load.bash"
5+
6+
# Uncomment to enable stub debugging
7+
# export CURL_STUB_DEBUG=/dev/tty
8+
9+
# you can set variables common to all tests here
10+
export BUILDKITE_PLUGIN_SPARSE_CHECKOUT_PATHS="default_path"
11+
export BUILDKITE_REPO_SSH_HOST="default_host"
12+
export BUILDKITE_COMMIT="dummy-commit-hash"
13+
}
14+
15+
@test "Skip ssh-keyscan when option provided" {
16+
export BUILDKITE_PLUGIN_SPARSE_CHECKOUT_SKIP_SSH_KEYSCAN='true'
17+
18+
stub git "clean \* : echo 'git clean'"
19+
stub git "fetch --depth 1 origin \* : echo 'git fetch'"
20+
stub git "sparse-checkout set \* \* : echo 'git sparse-checkout'"
21+
stub git "checkout \* : echo 'checkout'"
22+
23+
run "$PWD"/hooks/checkout
24+
25+
assert_success
26+
assert_output --partial 'Skipped SSH keyscan'
27+
28+
unstub git
29+
}
30+
31+
@test "Run ssh-keyscan when no option provided" {
32+
unset BUILDKITE_PLUGIN_SPARSE_CHECKOUT_SKIP_SSH_KEYSCAN
33+
34+
stub ssh-keyscan "\* : echo 'keyscan'"
35+
stub git "clean \* : echo 'git clean'"
36+
stub git "fetch --depth 1 origin \* : echo 'git fetch'"
37+
stub git "sparse-checkout set \* \* : echo 'git sparse-checkout'"
38+
stub git "checkout \* : echo 'checkout'"
39+
40+
run "$PWD"/hooks/checkout
41+
42+
assert_success
43+
assert_output --partial 'Scanning SSH keys for remote git repository'
44+
45+
unstub git
46+
unstub ssh-keyscan
47+
}

0 commit comments

Comments
 (0)