aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-10-12 08:22:57 +0100
committerDavid Baker <dave@matrix.org>2018-10-12 08:22:57 +0100
commit50ed20f61e76c4569c001cf8acb6e5bc361957b3 (patch)
tree0224871c07b0a98989e122c1937606a1857a2aa4 /.circleci
parentfac1d52dfe25d8bf6119cc41645a84c9111c6f6e (diff)
parentb2d91f55ece853ca1a398d3c6814f18a3f10bee0 (diff)
Merge remote-tracking branch 'origin/master' into dbkr/pk_private_export_import
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..0a891db
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,27 @@
+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: Install JS Deps
+ working_directory: ~/repo/javascript
+ command: npm install
+ - run:
+ name: JS Tests
+ working_directory: ~/repo/javascript
+ command: npm run test