forked from Shopify/ghostferry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.yml
More file actions
28 lines (26 loc) · 665 Bytes
/
dev.yml
File metadata and controls
28 lines (26 loc) · 665 Bytes
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
name: ghostferry
up:
- homebrew:
- glide
- mysql
- ruby: 2.5.1
- bundler
- go:
version: 1.10.3
- custom:
name: Docker for Mac
met?: test -e /Applications/Docker.app
meet: echo "Docker not found. Install from https://docs.docker.com/docker-for-mac/"; false
- custom:
name: Go Dependencies
met?: dep ensure
meet: echo 'dep failed to ensure dependencies'; false
- custom:
name: MySQL
met?: docker-compose up -d mysql-1 mysql-2
meet: echo 'mysql failed to start'; false
down: docker-compose stop mysql-1 mysql-2
commands:
test:
desc: Run the test suite.
run: make test