CircleCI config file

poljar/cmake_sas
David Baker 2018-10-02 10:37:24 +01:00
parent 04f58bb0c9
commit b1beadacee
1 changed files with 23 additions and 0 deletions

23
.circleci/config.yml Normal file
View File

@ -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