Created
February 8, 2017 03:01
-
-
Save koizuss/0fe1e35967a926efb4f8a3c00e7192b6 to your computer and use it in GitHub Desktop.
Wercker上でprivateリポジトリのsubmodule ref: http://qiita.com/koizuss@github/items/8aed954bd10a8e64fca8
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
build: | |
steps: | |
# ... | |
# `git` `openssh-client` がないboxの場合は事前にインストール | |
- script: | |
name: package install | |
code: | | |
yum install -y git openssh-client | |
# see http://devcenter.wercker.com/docs/git/submodules | |
- add-ssh-key: | |
keyname: BITBUCKET_KEY | |
host: bitbucket.org | |
# see https://github.com/wercker/step-add-to-known_hosts | |
- add-to-known_hosts: | |
hostname: bitbucket.org | |
fingerprint: 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40 | |
type: rsa | |
- script: | |
name: git submodule | |
code: | | |
git submodule update --init |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment