mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
* Use apt-get * Upgarde ubuntu * Disable upgrading drivers * Add messages to test * Add comment
23 lines
532 B
YAML
23 lines
532 B
YAML
name: Run benchmarks
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
run-benchmarks:
|
|
name: Benchmark
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
targets: x86_64-unknown-linux-gnu
|
|
- 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
|