Skip to content

Commit 0612707

Browse files
committed
Add Buildkite benchmarking pipeline
1 parent 1a8f921 commit 0612707

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

.buildkite/pipeline.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
steps:
2-
- label: ":julia: Benchmark"
2+
- label: ":julia: Run Tests"
33
plugins:
44
- JuliaCI/julia#v1:
55
version: "1.8"
@@ -10,3 +10,14 @@ steps:
1010
queue: "juliaecosystem"
1111
arch: "x86_64"
1212
timeout_in_minutes: 30
13+
14+
- label: ":julia: Run benchmarks"
15+
command: "julia --project=benchmark benchmark/runbenchmarks.jl"
16+
plugins:
17+
- JuliaCI/julia#v1:
18+
version: "1.8"
19+
agents:
20+
os: "linux"
21+
queue: "juliaecosystem"
22+
arch: "x86_64"
23+
timeout_in_minutes: 30

.github/workflows/Benchmark.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,5 @@ jobs:
2424
with:
2525
version: ${{ matrix.version }}
2626
arch: ${{ matrix.arch }}
27-
- uses: julia-actions/cache@v1
28-
- uses: julia-actions/julia-buildpkg@v1
2927
- name: Run benchmarks and upload to server
3028
run: julia --project=benchmark benchmark/runbenchmarks.jl

benchmark/runbenchmarks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Pkg
2-
Pkg.develop(path=".")
2+
Pkg.develop(path = ".")
33
Pkg.instantiate()
44

55
using TaylorDiff

0 commit comments

Comments
 (0)