Run different CI jobs only when relevant files are touched #284
Workflow file for this run
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
name: Run benchmarks | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/benchmark.yml' | |
- 'benchmark/**' | |
- 'src/**' | |
# Benchmarks include this file | |
- 'test/models/llw2d.jl' | |
workflow_dispatch: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: always. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1.8' | |
- uses: julia-actions/cache@v1 | |
with: | |
cache-name: "benchmarks" | |
- name: Install dependencies | |
shell: julia --color=yes {0} | |
run: | | |
using Pkg | |
Pkg.instantiate() | |
pkg"add PkgBenchmark [email protected]" | |
- name: Run benchmarks | |
shell: julia --color=yes {0} | |
run: | | |
using PkgBenchmark, BenchmarkCI | |
BenchmarkCI.judge( | |
PkgBenchmark.BenchmarkConfig( | |
env = Dict( | |
"JULIA_NUM_THREADS" => "2", | |
), | |
), | |
) | |
- name: Print judgement | |
shell: julia --color=yes {0} | |
run: | | |
using BenchmarkCI | |
BenchmarkCI.displayjudgement() | |
- name: Push results | |
shell: julia --color=yes {0} | |
run: | | |
using BenchmarkCI | |
BenchmarkCI.pushresult(; | |
url = "[email protected]:Team-RADDISH/ParticleDA.jl.git", | |
) | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SSH_KEY: ${{ secrets.DOCUMENTER_KEY }} |