Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/PerformanceCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Performance Check
on:
push:
branches:
- 'master'
tags: '*'
pull_request:
jobs:
build-and-benchmark:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1']
julia-arch: [x64]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Build project
uses: julia-actions/julia-buildpkg@latest
- name: Benchmark
env:
GITHUB_TOKEN: ${{ secrets.BENCHMARK_KEY }}
PR_NUMBER: ${{ github.event.number }}
run: julia --threads=4 --project=./benchmarking/CI-scripts ./benchmarking/CI-scripts/runtests.jl 2
8 changes: 8 additions & 0 deletions benchmarking/CI-scripts/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
GitHub = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
GitHubActions = "6b79fd1a-b13a-48ab-b6b0-aaee1fee41df"
Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
TestSetExtensions = "98d24dd4-01ad-11ea-1b02-c9a08f80db04"
Loading
Loading