From 3d974854bc008958f2425b5d7ac3e7ab29cc1a14 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 7 Jul 2017 16:22:21 -0700 Subject: Use never testrpc snapshot --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'circle.yml') diff --git a/circle.yml b/circle.yml index 028aadd58..e37e2be2b 100644 --- a/circle.yml +++ b/circle.yml @@ -2,7 +2,7 @@ machine: node: version: 6.1.0 environment: - CONTRACTS_COMMIT_HASH: cd04d7c + CONTRACTS_COMMIT_HASH: 414e997 test: override: -- cgit v1.2.3 From e7bb280d671bf56733a32f7deaabc16044d3d757 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 7 Jul 2017 16:29:33 -0700 Subject: Make CONTRACTS_COMMIT_HASH a string --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'circle.yml') diff --git a/circle.yml b/circle.yml index e37e2be2b..19d241468 100644 --- a/circle.yml +++ b/circle.yml @@ -2,7 +2,7 @@ machine: node: version: 6.1.0 environment: - CONTRACTS_COMMIT_HASH: 414e997 + CONTRACTS_COMMIT_HASH: '414e997' test: override: -- cgit v1.2.3 From 4fb2b5cf2b5bc644635603a428496324b3bb14ec Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 7 Jul 2017 18:34:42 -0700 Subject: Upgrade to a new node version --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'circle.yml') diff --git a/circle.yml b/circle.yml index 19d241468..9764ae7f2 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,6 @@ machine: node: - version: 6.1.0 + version: 6.5.0 environment: CONTRACTS_COMMIT_HASH: '414e997' -- cgit v1.2.3 From 994b51590f0aef06b3022dc170150ba7d3f6579f Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 7 Jul 2017 18:34:56 -0700 Subject: use yarn on CI --- circle.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'circle.yml') diff --git a/circle.yml b/circle.yml index 9764ae7f2..fbfa67c6d 100644 --- a/circle.yml +++ b/circle.yml @@ -3,6 +3,13 @@ machine: version: 6.5.0 environment: CONTRACTS_COMMIT_HASH: '414e997' + PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" + +dependencies: + override: + - yarn + cache_directories: + - ~/.cache/yarn test: override: @@ -10,7 +17,7 @@ test: - unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot - npm run testrpc -- --db testrpc_snapshot: background: true - - npm run test:coverage - - npm run report_test_coverage - - if [ $CIRCLE_BRANCH = "master" ]; then npm run test:umd; fi - - npm run lint + - yarn test:coverage + - yarn report_test_coverage + - if [ $CIRCLE_BRANCH = "master" ]; then yarn test:umd; fi + - yarn lint -- cgit v1.2.3