bergamot-translator/.circleci/config.yml
Abhishek Aggarwal f5dffeb5ca Downgraded resource class to 'medium' for circle ci
- Also restricted parallel make compilation to 3
2021-04-14 14:19:13 +02:00

20 lines
351 B
YAML

version: 2.1
jobs:
build:
docker:
- image: 'emscripten/emsdk:2.0.9'
resource_class: medium
working_directory: ~/checkout
steps:
- checkout
- run:
name: Build WASM
command: bash build-wasm.sh
- store_artifacts:
path: "build-wasm/wasm"
destination: "build-wasm/wasm"