Commit f6ee735dbe
Verified · cmc ci/build: success ci/test: failure
.gitbay/ci.yml +3 −3
| @@ -7,11 +7,11 @@ jobs: | ||
| 7 | 7 | - go vet ./... |
| 8 | 8 | # The suite drives real git, ssh, sshd and gpg. Several tests skip |
| 9 | 9 | # themselves when a tool is absent, so the prerequisites are asserted |
| 10 | # first: a green check that quietly tested less is worse than a red one. | |
| 10 | # first, all of them in one step so one run names everything to install. | |
| 11 | # A green check that quietly tested less is worse than a red one. | |
| 11 | 12 | # The 20m is under the runner's own 30m limit, so go times out first and |
| 12 | 13 | # says which test hung instead of the runner killing it blind. |
| 13 | 14 | test: |
| 14 | 15 | steps: |
| 15 | - for t in git git-lfs gpg; do command -v $t >/dev/null || { echo "missing $t"; exit 1; }; done | |
| 16 | - test -x /usr/sbin/sshd || { echo "missing /usr/sbin/sshd"; exit 1; } | |
| 16 | - missing=""; for t in git git-lfs gpg; do command -v "$t" >/dev/null || missing="$missing $t"; done; test -x /usr/sbin/sshd || missing="$missing sshd"; test -z "$missing" || { echo "runner is missing:$missing"; exit 1; } | |
| 17 | 17 | - go test ./... -count=1 -timeout 20m |