forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
44 lines (44 loc) · 1.01 KB
/
circle.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
machine:
timezone:
America/Los_Angeles
java:
version:
openjdk8
node:
version: 8.9.0
services:
- docker
dependencies:
override:
- lein deps
- npm install -g 'yarn@>=0.16.0'
# Forces the Sauce Connect binary to be downloaded during dependencies phase so it's cached
- SAUCE_CONNECT_DOWNLOAD_ON_INSTALL=true yarn
- mkdir plugins
cache_directories:
- "~/.yarn"
- "~/.yarn-cache"
database:
post:
# MySQL doesn't load named timezone information automatically, you have to run this command to load it
# TODO - we only really need to do this step if we're testing against MySQL
- mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u ubuntu mysql
test:
override:
- ./bin/ci:
parallel: true
deployment:
master:
branch: master
commands:
- ./bin/deploy-webhook $DEPLOY_WEBHOOK
general:
artifacts:
- target/uberjar/metabase.jar
- screenshots
experimental:
notify:
branches:
only:
- master
- /release-.*/