From 20af6bbde831ea2a5e70db21f7701dc6a21d753b Mon Sep 17 00:00:00 2001 From: ErikQQY <2283984853@qq.com> Date: Sun, 7 Apr 2024 23:15:56 +0800 Subject: [PATCH] Fix wrong benchmarks Signed-off-by: ErikQQY <2283984853@qq.com> --- .github/workflows/Benchmark.yml | 55 --------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/Benchmark.yml diff --git a/.github/workflows/Benchmark.yml b/.github/workflows/Benchmark.yml deleted file mode 100644 index 744eb85..0000000 --- a/.github/workflows/Benchmark.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Benchmarks -on: - push: - branches: - - master - pull_request: - branches: - - master - -concurrency: - # Skip intermediate builds: always. - # Cancel intermediate builds: only if it is a pull request build. - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} - -jobs: - benchmark: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 - with: - version: '1' - arch: x64 - - uses: actions/cache@v4 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - name: Run benchmark - run: | - cd bench - julia --project --color=yes -e ' - using Pkg; - Pkg.develop(PackageSpec(path=joinpath(pwd(), ".."))); - Pkg.instantiate(); - include("runbenchmarks.jl")' - - name: Parse & Upload Benchmark Results - uses: benchmark-action/github-action-benchmark@v1 - with: - name: Benchmark Results - tool: 'julia' - output-file-path: bench/benchmark_results.json - summary-always: true - github-token: ${{ secrets.GITHUB_TOKEN }} - comment-always: true - alert-threshold: "200%" - fail-on-alert: true - benchmark-data-dir-path: benchmarks - auto-push: ${{ github.event_name != 'pull_request' }} \ No newline at end of file