Skip to content

Commit 8c38fda

Browse files
committed
Remove branch info
1 parent 0612707 commit 8c38fda

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
steps:
2-
- label: ":julia: Run Tests"
2+
- label: ":julia: Run tests"
33
plugins:
44
- JuliaCI/julia#v1:
55
version: "1.8"

benchmark/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
55
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
66
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
77
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
8-
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
98
Lux = "b2108857-7c20-44ae-9111-449ecde12c47"
109
PkgBenchmark = "32113eaa-f34f-5b0d-bd6c-c81e245fc73d"
1110
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"

benchmark/runbenchmarks.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ using BenchmarkTools, PkgBenchmark
77
using BenchmarkTools: Trial, TrialEstimate, Parameters
88
import JSON: lower, json
99
using HTTP: put
10-
using LibGit2: GitRepo, headname
1110

1211
dict(x) = Dict(name => lower(getfield(x, name)) for name in fieldnames(typeof(x)))
1312

@@ -18,10 +17,7 @@ lower(estimate::TrialEstimate) = dict(estimate)
1817
lower(parameters::Parameters) = dict(parameters)
1918

2019
function benchmark()
21-
repo = GitRepo(pwd())
22-
branch = headname(repo)
23-
config = BenchmarkConfig(id = branch)
24-
results = benchmarkpkg(TaylorDiff, config)
20+
results = benchmarkpkg(TaylorDiff)
2521
endpoint = "https://benchmark.tansongchen.com"
2622
put(endpoint; body = json(results))
2723
end

0 commit comments

Comments
 (0)