OMG Tech Blog

Oh My Glasses Engineers' Blog

.travis.ymlのギャラリー

こんにちは。さねまつです。

.travis.ymlのギャラリー作ってます。オーマイグラスの.travis.ymlはこんなかんじです。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: ruby
rvm:
  - 2.0.0
env:
  - DB=mysql
before_install: gem install bundler --pre
before_script:
  - cp config/database.yml.example config/database.yml
  - cp config/settings.yml.example config/settings.yml
  - export DISPLAY=:99.0
  - sh -e /etc/init.d/xvfb start
  - RAILS_ENV=test bundle exec rake 'parallel:create[4]' 'parallel:load_schema[4]' 'parallel:prepare[4]'
bundler_args: --deployment --without development production --jobs=4
notifications:
  email:
    - notify@example.com
script: bundle exec parallel_test -n 4 -t rspec spec
branches:
  only:
    - master

サービスレベルで実運用してる.travis.yml見たいですよね!!! 観測範囲だとこのぐらい。

他にもご存知でしたらpull requestください。 https://github.com/sanemat/soryu

soryu

以上デース

Comments