Merge pull request #24 from arup-group/dependabot/pip/examples/pytest… #20
This file contains hidden or 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: Julia Example with BenchmarkTools.jl | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| deployments: write | |
| jobs: | |
| benchmark: | |
| name: Run julia benchmark example | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1" | |
| os: | |
| - ubuntu-latest | |
| arch: | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v1 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - 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 examples/julia | |
| julia --project --color=yes -e ' | |
| using Pkg; | |
| Pkg.instantiate(); | |
| include("fib.jl")' | |
| - name: Store benchmark result | |
| uses: arup-group/github-action-benchmark@v1 | |
| with: | |
| name: Julia benchmark result | |
| tool: "julia" | |
| output-file-path: examples/julia/output.json | |
| # Use personal access token instead of GITHUB_TOKEN due to https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| auto-push: true | |
| # Show alert with commit comment on detecting possible performance regression | |
| alert-threshold: "200%" | |
| comment-on-alert: true | |
| fail-on-alert: true | |
| alert-comment-cc-users: "@ktrz,@findmyway" | |
| - name: Store benchmark result - separate results repo | |
| uses: arup-group/github-action-benchmark@v1 | |
| with: | |
| name: Julia benchmark result | |
| tool: "julia" | |
| output-file-path: examples/julia/output.json | |
| # Use personal access token instead of GITHUB_TOKEN due to https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| auto-push: true | |
| # Show alert with commit comment on detecting possible performance regression | |
| alert-threshold: "200%" | |
| comment-on-alert: true | |
| fail-on-alert: true | |
| alert-comment-cc-users: "@ktrz,@findmyway" | |
| gh-repository: "github.com/arup-group/github-action-benchmark" |