bogus change #19
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: bmark_M1 | ||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
jobs: | ||
bmark: | ||
name: Julia ${{ matrix.version }} - macOS - ${{ matrix.arch }} - ${{ github.event_name }} | ||
if: contains(github.event.pull_request.labels.*.name, 'benchmarks') | ||
runs-on: [self-hosted, macOS] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- 1 | ||
arch: | ||
- aarch64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- name: Install benchmark dependencies | ||
run: julia --project=benchmark -e 'using Pkg; Pkg.instantiate()' | ||
- name: Run benchmarks | ||
run: julia --project=benchmark benchmark/run_benchmarks.jl ${{ github.event.repository.name }} | ||
- name: Post results in in PR | ||
uses: thollander/actions-comment-pull-request@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
filePath: ${{ GITHUB_SHA }}.json | ||
Check failure on line 33 in .github/workflows/bmark_M1.yml GitHub Actions / bmark_M1Invalid workflow file
|
||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: benchmarks | ||
path: | | ||
*.svg | ||
*.jld2 | ||
*.json |