Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@masutaka
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masutaka/8a01fe50e3917ca0b6d8 to your computer and use it in GitHub Desktop.
Save masutaka/8a01fe50e3917ca0b6d8 to your computer and use it in GitHub Desktop.
circle.yml of masutaka.net
machine:
timezone:
Asia/Tokyo
test:
override:
- |
if [ -z "${BUNDLE_UPDATE}" ] ; then
cd chalow
./chalow -o ../webroot/chalow -c cl.conf clmemo.txt
fi
deployment:
production:
branch: master
commands:
- |
if [ -z "${BUNDLE_UPDATE}" ] ; then
./script/deploy-circleci.sh
else
gem install circleci-bundle-update-pr
circleci-bundle-update-pr CircleCI circleci@example.com
fi
source 'https://rubygems.org'
ruby '2.2.0'
gem 'capistrano'
gem 'octokit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment