There was an error while loading. Please reload this page.
1 parent d707960 commit 3e32fa5Copy full SHA for 3e32fa5
2 files changed
.github/workflows/ci.yml
@@ -52,6 +52,14 @@ jobs:
52
- name: Install dependencies
53
run: dart pub get
54
55
- - name: Run benchmarks
56
- run: dart run benchmark/romanize_benchmark.dart
+ - name: Run benchmarks AOT
+ run: dart run benchmark/romanize_benchmark.dart -f aot
57
58
+ - name: Run benchmarks JIT
59
+ run: dart run benchmark/romanize_benchmark.dart -f jit
60
+
61
+ - name: Run benchmarks JS
62
+ run: dart run benchmark/romanize_benchmark.dart -f js
63
64
+ - name: Run benchmarks WASM
65
+ run: dart run benchmark/romanize_benchmark.dart -f wasm
.gitignore
@@ -20,7 +20,6 @@ doc/api/
20
*.info.json
21
# When generated by dart2js. Don't specify *.js if your
22
# project includes source files written in JavaScript.
23
-*.js
24
*.js_
25
*.js.deps
26
*.js.map
0 commit comments