Created
November 18, 2016 03:17
-
-
Save dented/d9e9849c972ba7b1cb2864e927fd8923 to your computer and use it in GitHub Desktop.
RethinkDB for circle ci
This file contains hidden or 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
| machine: | |
| ruby: | |
| version: 2.2.3 | |
| general: | |
| branches: | |
| only: | |
| - master | |
| - develop | |
| dependencies: | |
| pre: | |
| - source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list | |
| - wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - | |
| - sudo apt-get update | |
| - sudo apt-get install rethinkdb | |
| - sudo cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf | |
| - sudo /etc/init.d/rethinkdb restart | |
| test: | |
| override: | |
| - rspec spec/controllers/ | |
| checkout: | |
| post: | |
| - mv config/settings/test.rb.example config/settings/application.rb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment