Remove references to IETF draft from source code #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- 'README.org' | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: ${{ matrix.lisp }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
lisp: [sbcl-bin, ccl-bin/1.12.2, ecl/23.9.9] | |
os: [ubuntu-latest] | |
env: | |
LISP: ${{ matrix.lisp }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Lisp | |
uses: 40ants/setup-lisp@v4 | |
with: | |
qlfile-template: | | |
dist ultralisp http://dist.ultralisp.org | |
- name: Run benchmarks | |
shell: bash | |
run: | | |
ros install neil-lindquist/ci-utils | |
asdf-register-project | |
echo "Base benchmark" | |
ros run --eval '(ql:quickload :frugal-uuid/benchmark)' --eval '(progn (asdf:test-system :frugal-uuid/benchmark) (quit))' | |
echo "Non-frugal benchmark" | |
ros run --eval '(ql:quickload :frugal-uuid/*)' --eval '(progn (asdf:test-system :frugal-uuid/benchmark) (quit))' |