forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: track identifiers with $ (QwikDev#142)
- v0.13.3
- v0.13.2
- v0.13.1
- v0.13.0
- v0.12.1
- v0.12.0
- v0.11.1
- v0.11.0
- v0.10.0
- v0.9.0
- v0.0.113
- v0.0.112
- v0.0.110
- v0.0.109
- v0.0.108
- v0.0.107
- v0.0.106
- v0.0.105
- v0.0.104
- v0.0.103
- v0.0.102
- v0.0.101
- v0.0.100
- v0.0.42
- v0.0.41
- v0.0.40
- v0.0.39
- v0.0.38
- v0.0.37
- v0.0.36
- v0.0.35
- v0.0.34
- v0.0.33
- v0.0.32
- v0.0.31
- v0.0.30
- v0.0.29
- v0.0.28
- v0.0.27
- v0.0.26
- v0.0.25
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.21-0
- v0.0.20
- v0.0.20-8
- v0.0.20-7
- v0.0.20-5
- v0.0.20-4
- v0.0.20-3
- v0.0.20-2
- v0.0.20-1
- v0.0.20-0
- v0.0.19
- v0.0.19-2
- v0.0.19-1
- v0.0.19-0
- v0.0.18
- v0.0.18-7
- v0.0.18-6
- v0.0.18-5
- v0.0.18-4
- v0.0.18-3
- v0.0.18-2
- v0.0.18-1
- v0.0.18-0
- v0.0.16
- v0.0.16-13
- v0.0.16-12
- v0.0.16-10
- v0.0.16-9
- v0.0.16-8
- v0.0.16-7
- v0.0.16-6
- v0.0.16-5
1 parent
04cd460
commit b01b264
Showing
46 changed files
with
1,770 additions
and
962 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Benchmark | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
benchmark: | ||
name: Performance regression check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: | | ||
./cache | ||
~/.cargo/ | ||
target | ||
key: cargo-bench-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: | | ||
cargo-bench-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: nightly-2021-09-30 | ||
override: true | ||
|
||
- name: Run benchmark | ||
run: cargo +nightly-2021-09-30 bench --workspace | tee output.txt | ||
|
||
- name: Download previous benchmark results | ||
run: mkdir raw-data && curl -o raw-data/benchmark-data.json https://raw.githubusercontent.com/BuilderIO/qwik-raw-data/gh-pages/benchmark-data.json | ||
|
||
- name: Analyze benchmark result | ||
uses: benchmark-action/github-action-benchmark@v1 | ||
with: | ||
# What benchmark tool the output.txt came from | ||
tool: 'cargo' | ||
# Where the output from the benchmark tool is stored | ||
output-file-path: output.txt | ||
external-data-json-path: ./raw-data/${{ github.sha }}/benchmark-data.json | ||
# Workflow will fail when an alert happens | ||
fail-on-alert: false | ||
# GitHub API token to make a commit comment | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# Enable alert commit comment | ||
comment-on-alert: true | ||
comment-always: true | ||
alert-comment-cc-users: '@manucorporat' | ||
skip-fetch-gh-pages: true | ||
|
||
- name: Analyze benchmark result (root) | ||
if: ${{ github.event_name == 'push' }} | ||
uses: benchmark-action/github-action-benchmark@v1 | ||
with: | ||
# What benchmark tool the output.txt came from | ||
tool: 'cargo' | ||
# Where the output from the benchmark tool is stored | ||
output-file-path: output.txt | ||
external-data-json-path: ./raw-data/benchmark-data.json | ||
# Workflow will fail when an alert happens | ||
# fail-on-alert: true | ||
# GitHub API token to make a commit comment | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# Enable alert commit comment | ||
comment-on-alert: true | ||
comment-always: true | ||
alert-comment-cc-users: '@manucorporat' | ||
skip-fetch-gh-pages: true | ||
max-items-in-chart: 250 | ||
|
||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: JamesIves/github-pages-deploy-action@4.1.0 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
branch: gh-pages | ||
folder: raw-data | ||
clean: false | ||
single-commit: false | ||
git-config-email: github-bot@builder.io | ||
repository-name: BuilderIO/qwik-raw-data | ||
commit-message: 'Update' |
Oops, something went wrong.