-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathconfig.yml
50 lines (41 loc) · 1.27 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
version: 2.1
orbs:
slack: circleci/[email protected]
jobs:
build:
working_directory: ~/fae-rails
docker:
- image: circleci/ruby:2.4.1
environment:
RAILS_ENV: test
- image: cimg/mysql:8.0
steps:
- checkout
# Restore Cached Dependencies
- type: cache-restore
name: Restore bundle cache
key: fae-rails-{{ checksum "Gemfile.lock" }}
# Bundle install dependencies
- run: bundle install --path bin/bundle
# Cache Dependencies
- type: cache-save
name: Store bundle cache
key: fae-rails-{{ checksum "Gemfile.lock" }}
paths:
- bin/bundle
# Wait for DB
- run: dockerize -wait tcp://localhost:5432 -timeout 1m
# Setup the environment
# - run: cp .sample.env .env
# Setup the database
- run: bundle exec appraisal rake db:create
- run: bundle exec appraisal rake db:migrate
- run: mysql -e "CREATE DATABASE IF NOT EXISTS fae_dummy_test CHARACTER SET utf8 COLLATE utf8_general_ci;"
- run: cd spec/dummy
- run: bundle exec rake db:schema:load --trace
- run: cd ../../
- run: export DISPLAY=:99.0
- run: sh -e /etc/init.d/xvfb start
# Run the tests
- run: bundle exec appraisal rspec