diff options
author | David Baker <dave@matrix.org> | 2018-10-02 10:37:24 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-10-03 15:59:45 +0100 |
commit | b1beadaceeac5556c5e4932155a58c300cf1d39b (patch) | |
tree | 9ce547a5026dd07ab9f654336315cf0976be45b3 | |
parent | 04f58bb0c90c7656f54d3aa5bb0bf067c60db23c (diff) |
CircleCI config file
-rw-r--r-- | .circleci/config.yml | 23 |
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 |