We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb7eca9 commit 8f79a05Copy full SHA for 8f79a05
1 file changed
circle.yml
@@ -1,6 +1,9 @@
1
version: 2.1
2
3
executors:
4
+ base:
5
+ docker:
6
+ - image: cimg/base:2020.01
7
notebook:
8
docker:
9
- image: circleci/python:3.7.0
@@ -22,10 +25,21 @@ jobs:
22
25
git checkout -f notebooks/wasm-engines.ipynb
23
26
# Ensures the generated images are matching
24
27
git diff --color --exit-code
28
+ run-wasm-engines:
29
+ machine: true
30
+ steps:
31
+ - checkout
32
+ - run:
33
+ name: Run wasm-engines benchmark
34
+ command: |
35
+ make wasm_engines
36
37
workflows:
38
version: 2
39
40
41
jobs:
42
- rebuild-notebook
43
+ wasm-engines:
44
+ jobs:
45
+ - run-wasm-engines
0 commit comments