Skip to content

Commit a8325da

Browse files
authored
Use separate master and commit compiler for benchmark compiling (#1133)
1 parent 8b82232 commit a8325da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,29 +76,29 @@ jobs:
7676
run: rm -rf ./master/benchmark && cp -rf ./commit/benchmark ./master/benchmark
7777
# Run master benchmark first and output to commit benchmark data
7878
- name: Build benchmark Lua 5.3 master
79-
run: node ../../commit/dist/tstl.js -p tsconfig.53.json
79+
run: node ../dist/tstl.js -p tsconfig.53.json
8080
working-directory: master/benchmark
8181
- name: Run benchmark Lua 5.3 master
8282
id: benchmark-lua-master
8383
run: lua5.3 -- run.lua ../../../commit/benchmark/data/benchmark_master_53.json
8484
working-directory: master/benchmark/dist
8585
- name: Build benchmark LuaJIT master
86-
run: node ../../commit/dist/tstl.js -p tsconfig.jit.json
86+
run: node ../dist/tstl.js -p tsconfig.jit.json
8787
working-directory: master/benchmark
8888
- name: Run benchmark LuaJIT master
8989
id: benchmark-jit-master
9090
run: luajit -- run.lua ../../../commit/benchmark/data/benchmark_master_jit.json
9191
working-directory: master/benchmark/dist
9292
# Run commit benchmark and compare with master
9393
- name: Build benchmark Lua 5.3 commit
94-
run: node ../../commit/dist/tstl.js -p tsconfig.53.json
94+
run: node ../dist/tstl.js -p tsconfig.53.json
9595
working-directory: commit/benchmark
9696
- name: Run benchmark Lua 5.3 commit
9797
id: benchmark-lua-commit
9898
run: lua5.3 -- run.lua ../data/benchmark_master_vs_commit_53.json ../data/benchmark_master_53.json
9999
working-directory: commit/benchmark/dist
100100
- name: Build benchmark LuaJIT commit
101-
run: node ../../commit/dist/tstl.js -p tsconfig.jit.json
101+
run: node ../dist/tstl.js -p tsconfig.jit.json
102102
working-directory: commit/benchmark
103103
- name: Run benchmark LuaJIT commit
104104
id: benchmark-jit-commit

0 commit comments

Comments
 (0)