From 5e2b7e234df1842bf3b54a3756b3b13c293302b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cam=20Sa=C3=BCl?= <cammsaul@gmail.com> Date: Fri, 6 Nov 2015 16:17:28 -0800 Subject: [PATCH] squash! SQL Server Driver :yum: --- circle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index 80fe9f10a6b..0f12325fc9d 100644 --- a/circle.yml +++ b/circle.yml @@ -17,12 +17,12 @@ database: test: override: # 0) runs unit tests w/ H2 local DB. Runs against Mongo, H2, Postgres - # 1) runs unit tests w/ Postgres local DB. Runs against H2, MySQL + # 1) runs unit tests w/ Postgres local DB. Runs against H2, MySQL, SQL Server # 2) runs Eastwood linter # 3) Bikeshed linter # 4) runs JS linter + JS test # 5) runs lein uberjar. (We don't run bin/build because we're not really concerned about `npm install` (etc) in this test, which runs elsewhere) - - case $CIRCLE_NODE_INDEX in 0) MB_TEST_DATASETS=h2,mongo,postgres lein test ;; 1) MB_TEST_DATASETS=h2,mysql MB_DB_TYPE=postgres MB_DB_DBNAME=circle_test MB_DB_PORT=5432 MB_DB_USER=ubuntu MB_DB_HOST=localhost lein test ;; 2) lein eastwood ;; 3) lein bikeshed --max-line-length 240 ;; 4) npm install && npm run lint && npm run build && npm run test ;; 5) lein uberjar ;; esac: + - case $CIRCLE_NODE_INDEX in 0) MB_TEST_DATASETS=h2,mongo,postgres lein test ;; 1) MB_TEST_DATASETS=h2,mysql,sqlserver MB_DB_TYPE=postgres MB_DB_DBNAME=circle_test MB_DB_PORT=5432 MB_DB_USER=ubuntu MB_DB_HOST=localhost lein test ;; 2) lein eastwood ;; 3) lein bikeshed --max-line-length 240 ;; 4) npm install && npm run lint && npm run build && npm run test ;; 5) lein uberjar ;; esac: parallel: true deployment: master: -- GitLab