mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
23 lines
580 B
YAML
23 lines
580 B
YAML
name: Run benchmarks
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
run-benchmarks:
|
|
name: Benchmark
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: extractions/setup-just@v1
|
|
- name: Install toolchain
|
|
shell: bash
|
|
run: just default-toolchain
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Install GPU Drivers
|
|
uses: ./.github/actions/install-driver
|
|
- name: Download test data
|
|
uses: ./.github/actions/download-test-data
|
|
- name: Benchmark
|
|
shell: bash
|
|
run: WGPU_BACKEND=vulkan just benchmark |