mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
22 lines
443 B
YAML
22 lines
443 B
YAML
on: [pull_request]
|
|
|
|
name: Benchmarks
|
|
|
|
jobs:
|
|
benchmark:
|
|
name: benchmark
|
|
runs-on: self-hosted
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Log CPU model
|
|
run: cat /proc/cpuinfo | grep name | uniq
|
|
|
|
- name: Expose needed modules
|
|
run: cd editor && ./prep_benchmarks.sh && cd ..
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
name: cargo bench
|
|
with:
|
|
command: bench |