aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-10-02 10:37:24 +0100
committerDavid Baker <dave@matrix.org>2018-10-03 15:59:45 +0100
commitb1beadaceeac5556c5e4932155a58c300cf1d39b (patch)
tree9ce547a5026dd07ab9f654336315cf0976be45b3 /.circleci
parent04f58bb0c90c7656f54d3aa5bb0bf067c60db23c (diff)
CircleCI config file
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..0ef608b
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,23 @@
+version: 2
+jobs:
+ build:
+ docker:
+ - image: trzeci/emscripten
+
+ working_directory: ~/repo
+
+ steps:
+ - checkout
+ - run:
+ name: Native Compile
+ command: make
+ - run:
+ name: Native Tests
+ command: make test
+ - run:
+ name: JS Compile
+ command: make js
+ - run:
+ name: JS Tests
+ working_directory: ~/repo/javascript
+ command: npm run test