2023-02-19 16:17:49 +03:00
|
|
|
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2023-05-22 18:52:44 +03:00
|
|
|
name: bench
|
2021-05-21 22:50:40 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
2023-06-17 15:41:22 +03:00
|
|
|
- 1.x
|
2021-05-21 22:50:40 +03:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-02-14 02:27:21 +03:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
|
2022-12-14 18:44:05 +03:00
|
|
|
LC_ALL: en_US.UTF-8 # This prevents strace from changing it's number format to use commas.
|
2022-02-14 02:27:21 +03:00
|
|
|
|
2022-04-21 21:09:57 +03:00
|
|
|
concurrency:
|
2022-04-27 01:04:10 +03:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-04-21 21:09:57 +03:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-05-21 22:50:40 +03:00
|
|
|
jobs:
|
|
|
|
bench:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-02-14 02:27:21 +03:00
|
|
|
rust: [nightly]
|
2021-05-21 22:50:40 +03:00
|
|
|
platform:
|
2023-01-19 04:28:42 +03:00
|
|
|
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04 }
|
2021-05-21 22:50:40 +03:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.platform.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-02-14 02:27:21 +03:00
|
|
|
- name: install ${{ matrix.rust }}
|
2021-05-21 22:50:40 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-02-14 02:27:21 +03:00
|
|
|
toolchain: ${{ matrix.rust }}
|
2021-05-21 22:50:40 +03:00
|
|
|
override: true
|
2022-11-05 19:14:56 +03:00
|
|
|
default: true
|
2021-05-21 22:50:40 +03:00
|
|
|
components: rust-src
|
|
|
|
target: ${{ matrix.platform.target }}
|
|
|
|
|
|
|
|
- name: setup python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2022-11-05 01:25:55 +03:00
|
|
|
python-version: '3.10'
|
2021-05-21 22:50:40 +03:00
|
|
|
architecture: x64
|
|
|
|
|
2022-09-03 07:03:02 +03:00
|
|
|
- name: install dependencies
|
2021-05-21 22:50:40 +03:00
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
sudo apt-get update
|
2022-11-10 23:30:10 +03:00
|
|
|
sudo apt-get install -y webkit2gtk-4.0 libayatana-appindicator3-dev xvfb
|
2021-05-21 22:50:40 +03:00
|
|
|
wget https://github.com/sharkdp/hyperfine/releases/download/v1.11.0/hyperfine_1.11.0_amd64.deb
|
|
|
|
sudo dpkg -i hyperfine_1.11.0_amd64.deb
|
|
|
|
pip install memory_profiler
|
|
|
|
|
2022-11-05 00:26:30 +03:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2021-05-21 22:50:40 +03:00
|
|
|
with:
|
2022-11-05 00:26:30 +03:00
|
|
|
workspaces: |
|
2022-11-06 22:27:29 +03:00
|
|
|
core -> ../target
|
2022-11-05 00:26:30 +03:00
|
|
|
tooling/bench/tests
|
2022-02-14 02:27:21 +03:00
|
|
|
|
2021-05-21 22:50:40 +03:00
|
|
|
- name: run benchmarks
|
|
|
|
run: |
|
2022-02-14 02:27:21 +03:00
|
|
|
cargo build --release -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target ${{ matrix.platform.target }} --manifest-path tooling/bench/tests/Cargo.toml
|
2021-05-21 22:50:40 +03:00
|
|
|
xvfb-run --auto-servernum cargo run --manifest-path tooling/bench/Cargo.toml --bin run_benchmark
|
|
|
|
|
|
|
|
- name: clone benchmarks_results
|
2022-02-14 02:27:21 +03:00
|
|
|
if: github.repository == 'tauri-apps/tauri' && github.ref == 'refs/heads/dev'
|
2021-05-21 22:50:40 +03:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.BENCH_PAT }}
|
|
|
|
path: gh-pages
|
|
|
|
repository: tauri-apps/benchmark_results
|
|
|
|
|
|
|
|
- name: push new benchmarks
|
2022-02-14 02:27:21 +03:00
|
|
|
if: github.repository == 'tauri-apps/tauri' && github.ref == 'refs/heads/dev'
|
2021-05-21 22:50:40 +03:00
|
|
|
run: |
|
|
|
|
cargo run --manifest-path tooling/bench/Cargo.toml --bin build_benchmark_jsons
|
|
|
|
cd gh-pages
|
|
|
|
git pull
|
|
|
|
git config user.name "tauri-bench"
|
|
|
|
git config user.email "gh.tauribot@gmail.com"
|
|
|
|
git add .
|
|
|
|
git commit --message "Update Tauri benchmarks"
|
|
|
|
git push origin gh-pages
|
|
|
|
|
2022-11-05 00:26:30 +03:00
|
|
|
- name: Print worker info
|
2021-05-21 22:50:40 +03:00
|
|
|
run: |
|
|
|
|
cat /proc/cpuinfo
|
|
|
|
cat /proc/meminfo
|