Raymond Toy pushed to branch rtoy-issue-87-add-cl-bench at cmucl / cmucl
Commits: 682553a2 by Raymond Toy at 2020-09-04T12:02:03-07:00 Ignore files created from running the benchmarks
- - - - - ab2992c3 by Raymond Toy at 2020-09-04T12:04:40-07:00 Make run-cmucl.sh executable
- - - - - a68d0c37 by Raymond Toy at 2020-09-04T12:06:37-07:00 Run benchmarks
Run the benchmarks using the snapshot and then with the newly built version. Generate a report too.
The benchmark results are added to the artifacts.
- - - - -
3 changed files:
- .gitlab-ci.yml - + benchmarks/cl-bench/files/.gitignore - benchmarks/cl-bench/run-cmucl.sh
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -7,6 +7,7 @@ linux-runner: artifacts: paths: - ansi-test/test.out + - benchmarks/cl-bench/results tags: - linux before_script: @@ -22,7 +23,11 @@ linux-runner: - bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log - cd ansi-test - make LISP="../dist/bin/lisp -batch -noinit -nositeinit" - - grep 'No unexpected (successes|failures)' test.out + - grep 'No unexpected (successes|failures)' test.out + - cd ../benchmarks/cl-bench + - CMUCL=../../snapshot/bin/lisp run-cmucl.sh + - CMUCL=../../dist/bin/lisp run-cmucl.sh + - ../../snapshot/bin/lisp -load report
osx-runner: artifacts:
===================================== benchmarks/cl-bench/files/.gitignore ===================================== @@ -0,0 +1,13 @@ +/arrays.olisp +/bignum.olisp +/boehm-gc.olisp +/clos-janderson.olisp +/clos.olisp +/crc40.olisp +/deflate.olisp +/gabriel.olisp +/hash.olisp +/math.olisp +/misc.olisp +/ratios.olisp +/richards.olisp
===================================== benchmarks/cl-bench/run-cmucl.sh =====================================
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/f15977bd7d814fd5ea30cf0...