spectat-jekyll 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/spectat/jekyll/rake_task/gitlab-ci.yml.erb +7 -0
- data/lib/spectat/jekyll/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8f93dc184b66aef4c921163c4acf765139e13b62e9e17a8d3655e6dff16fd44
|
4
|
+
data.tar.gz: 2bc9606b0597a4989d0ccf384bee1a4eafc15a19a6e0f62be64bb26a14abb8f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f46680de0c28cc6dd511f17c1e3f5ced042a26d03e44187669f2913bfafd799670acc70c4cb54192afe57c1029ecc3b23ecb853b2d57151db2c9fd999f41467
|
7
|
+
data.tar.gz: 00c179ae94bd43258349eec8741fdc9debf2b5fea27daa0b4f3e4a05ad515b2d563f9020d6016be522b0462d69668a0c0c63381e21cc7eee0d6534d01c05c5b7
|
@@ -59,6 +59,13 @@ test:
|
|
59
59
|
image: $CONTAINER_BUILDER_IMAGE
|
60
60
|
stage: test
|
61
61
|
script:
|
62
|
+
# Grab the private submodules (public are fine) {{{
|
63
|
+
- apk --update add openssh-client git
|
64
|
+
- .ci/ssh-init.sh
|
65
|
+
- eval $(ssh-agent -s) && echo "$RO_CLONE_PRIVATE_KEY" | ssh-add -
|
66
|
+
- git submodule update --init
|
67
|
+
# }}}
|
68
|
+
|
62
69
|
- bundle exec rake 'capistrano:validate[<%= @full_repo_path %>,<%= @fqdn_production %>]'
|
63
70
|
- bundle exec rake 'gitlab:validate[<%= @full_repo_path %>,<%= @fqdn_production %>]'
|
64
71
|
|