Skip to content

Commit 1a8f921

Browse files
committed
Add Buildkite testing pipeline
1 parent b502b54 commit 1a8f921

3 files changed

Lines changed: 16 additions & 6 deletions

File tree

.buildkite/pipeline.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
steps:
2+
- label: ":julia: Benchmark"
3+
plugins:
4+
- JuliaCI/julia#v1:
5+
version: "1.8"
6+
- JuliaCI/julia-test#v1:
7+
coverage: false
8+
agents:
9+
os: "linux"
10+
queue: "juliaecosystem"
11+
arch: "x86_64"
12+
timeout_in_minutes: 30

.github/workflows/Benchmark.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,5 @@ jobs:
2626
arch: ${{ matrix.arch }}
2727
- uses: julia-actions/cache@v1
2828
- uses: julia-actions/julia-buildpkg@v1
29-
- name: Install PkgBenchmark and instantiate benchmark environment
30-
run: |
31-
julia --project=benchmark -e '
32-
using Pkg
33-
Pkg.develop(path=".")
34-
Pkg.instantiate()'
3529
- name: Run benchmarks and upload to server
3630
run: julia --project=benchmark benchmark/runbenchmarks.jl

benchmark/runbenchmarks.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
using Pkg
2+
Pkg.develop(path=".")
3+
Pkg.instantiate()
4+
15
using TaylorDiff
26
using BenchmarkTools, PkgBenchmark
37
using BenchmarkTools: Trial, TrialEstimate, Parameters

0 commit comments

Comments
 (0)