Last active
February 8, 2016 21:16
-
-
Save yosmoc/a37b2adf11f84067256e to your computer and use it in GitHub Desktop.
Travis CI で複数環境でテストしたあとビルドプロセスは特定の環境で行いたい時のTips ref: http://qiita.com/samurai20000@github/items/fb47850cd8fbc4e46ee2
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
after_script: | |
- if [ "$TRAVIS_GO_VERSION" = "1.5.3" ] && [ "$BUILD_GOOS" = "linux" ] && [ "$TRAVIS_TAG" != "" ]; then go get github.com/inconshreveable/mousetrap; fi |
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
after_script: | |
- if [ "$TRAVIS_GO_VERSION" = "1.5.3" ] && [ "$BUILD_GOOS" = "linux" ] && [ "$TRAVIS_TAG" != "" ]; then go get github.com/inconshreveable/mousetrap; fi |
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
after_script: | |
deploy: | |
provider: releases | |
api_key: "GITHUB OAUTH TOKEN" | |
file: "FILE TO UPLOAD" | |
skip_cleanup: true | |
on: | |
tags: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment