File size: 4,983 Bytes
1e92f2d | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | # CircleCI configuration for Spectrum
version: 2.1
# Aliases
aliases:
# Cache Management
- &restore-yarn-cache
keys:
- v1-yarn-{{ arch }}-{{ checksum "package.json" }}
- v1-yarn-{{ arch }}-
- &save-yarn-cache
paths:
- node_modules
- ~/.cache/yarn
key: v1-yarn-{{ arch }}-{{ checksum "package.json" }}
- &yarn |
yarn
- &install-rethinkdb
name: Install RethinkDB 2.3.5
command: |
echo "deb http://download.rethinkdb.com/apt jessie 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=2.3.5~0jessie
- &start-rethinkdb
name: Start RethinkDB
command: rethinkdb --bind all
background: true
- &setup-and-build-web
name: Setup and build web
command: |
cp now-secrets.example.json now-secrets.json
yarn run build:web
- &build-api
name: Build API
command: yarn run build:api
- &start-api
name: Start the API in the background
command: yarn run start:api:test
background: true
- &start-web
name: Start web client in the background
command: yarn run dev:web
background: true
defaults: &defaults
working_directory: ~/spectrum
js_defaults: &js_defaults
<<: *defaults
docker:
- image: circleci/node:8
jobs:
# Set up environment and install required dependencies
checkout_environment:
<<: *js_defaults
steps:
- checkout
- restore_cache: *restore-yarn-cache
- run: *yarn
- save_cache: *save-yarn-cache
- persist_to_workspace:
root: .
paths: .
build_web:
<<: *js_defaults
steps:
- attach_workspace:
at: ~/spectrum
- run: *setup-and-build-web
- run: *build-api
- persist_to_workspace:
root: .
paths:
- build-api
- build
test_unit:
<<: *defaults
docker:
- image: circleci/node:8
- image: redis:3.2.7
- image: rethinkdb:2.3.5
environment:
TERM: xterm
steps:
- attach_workspace:
at: ~/spectrum
- run: yarn run db:migrate
- run: yarn run db:seed
- run:
name: Run Unit Tests
command: yarn run test:ci
# Start db and servers, then run e2e and unit tests
test_integration:
<<: *defaults
docker:
- image: circleci/node:8-browsers
- image: redis:3.2.7
- image: cypress/base:6
- image: rethinkdb:2.3.5
parameters:
parallelism:
type: integer
default: 1
description: Number of boxes to use to run this job
parallelism: <<parameters.parallelism>>
environment:
TERM: xterm
steps:
- attach_workspace:
at: ~/spectrum
- run: yarn run db:migrate
- run: yarn run db:seed
- run: *start-api
- run: *start-web
# Wait for the API and webserver to start
- run: ./node_modules/.bin/wait-on http://localhost:3000 http://localhost:3001
- run:
name: Install Cypress
command: yarn run cypress:install
- run:
name: Run E2E Tests
command: |
if [ $CYPRESS_RECORD_KEY ]; then
yarn run test:e2e -- --record --parallel
else
yarn run test:e2e
fi
# This runs after the above and is only here to hack around missing support for varying jobs based on external vs internal PRs
# See https://github.com/withspectrum/spectrum/pull/4820
test_e2e:
docker:
- image: cypress/base:10
steps:
- run: echo "pass"
# Run eslint, flow etc.
test_static_js:
<<: *js_defaults
steps:
- attach_workspace:
at: ~/spectrum
- run:
name: Run Flow
command: yarn run flow
- run:
name: Run ESLint
command: yarn run lint
workflows:
test:
jobs:
- checkout_environment
- test_unit:
requires:
- checkout_environment
- test_static_js:
requires:
- checkout_environment
- build_web:
requires:
- checkout_environment
# Run pull requests from internal contributors in parallel
- test_integration:
name: test_e2e_internal
requires:
- build_web
parallelism: 8
filters:
branches:
ignore: /pull.*/
# Run pull requests from external contributors on one machine
- test_integration:
name: test_e2e_external
requires:
- build_web
parallelism: 1
filters:
branches:
only: /pull.*/
# If either of the test_e2e_* jobs pass, this one passes so we can mark it as required on GitHub
- test_e2e:
requires:
- test_e2e_internal
- test_e2e_external
|