summaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-03-27 17:23:01 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-03-29 09:57:31 -0300
commit0f1af1b9892a73049a5d4ac707f07b990a860ac9 (patch)
tree9265c6d79b13cc5ab1983b246a488c0c9756e03b /circle.yml
parenta9462a5d761aab4d4bcd89412fb265155c981972 (diff)
[#1022] CircleCI build configuration file
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 00000000..2c512431
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,21 @@
+machine:
+ python:
+ version:
+ 2.7.11
+ node:
+ version:
+ 6.1.0
+ environment:
+ LC_ALL: 'en_US.UTF-8'
+
+dependencies:
+ override:
+ - make clean_all
+ - pip install -U --force-reinstall --no-cache-dir virtualenv
+ - gem install compass && rbenv rehash
+
+test:
+ override:
+ - make linters
+ - make test
+ - make functional_tests_ci