Skip to content

Commit d4f99c2

Browse files
committed
Updates from fillmore-labs/kafka-sensors
Signed-off-by: Oliver Eikemeier <[email protected]>
1 parent bbd3e67 commit d4f99c2

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

.buildkite/pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ steps:
1515
- bazel coverage --config=ci
1616
//chapter02/... //chapter03/... //chapter04/... //chapter05/...
1717
//chapter07/... //chapter08/... //chapter09/... //chapter11/...
18-
- sh .buildkite/upload_coverage.sh
18+
- sh .buildkite/upload_coverage.sh "$(bazel info output_path)/_coverage/_coverage_report.dat"
1919
branches: "main"

.buildkite/upload_coverage.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/bin/sh
22

3-
COVERAGE="$(bazel info output_path)/_coverage/_coverage_report.dat"
3+
COVERAGE_REPORT="$1"
4+
test -r "$COVERAGE_REPORT" || exit 1
45

5-
echo "Upload Coverage"
6-
codecov -f "$COVERAGE" &
6+
echo "Upload Codecov Coverage"
7+
codecov -f "$COVERAGE_REPORT" &
78
PID1=$!
89

9-
echo "Upload Coverage"
10-
cc-test-reporter format-coverage -t lcov -o .coverage/codeclimate.json "$COVERAGE"
10+
echo "Upload Code Climate Coverage"
11+
cc-test-reporter format-coverage -t lcov -o .coverage/codeclimate.json "$COVERAGE_REPORT"
1112
cc-test-reporter upload-coverage -r "$CC_TEST_REPORTER_ID" -i .coverage/codeclimate.json &
1213
PID2=$!
1314

third_party/async_profiler/defs.bzl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ def async_profiler_repositories():
66
http_archive(
77
name = "async_profiler_linux_x64",
88
build_file = "//third_party/async_profiler:BUILD.async_profiler.bazel",
9-
sha256 = "f833908a20a7e626e1f2c8f93fb6679ab139fb38287eca6407101ccc646995a7",
10-
strip_prefix = "async-profiler-2.6-linux-x64",
11-
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.6/async-profiler-2.6-linux-x64.tar.gz"],
9+
sha256 = "085f81ee0b231530c8b8171f84c8915874af68eaa9199413516f1ff34055a703",
10+
strip_prefix = "async-profiler-2.7-linux-x64",
11+
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.7/async-profiler-2.7-linux-x64.tar.gz"],
1212
)
1313

1414
http_archive(
1515
name = "async_profiler_linux_arm64",
1616
build_file = "//third_party/async_profiler:BUILD.async_profiler.bazel",
17-
sha256 = "61f240fdca52ccc2eba34acd4134a7af524715fc6a9c452071aac5ddc1fb494d",
18-
strip_prefix = "async-profiler-2.6-linux-arm64",
19-
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.6/async-profiler-2.6-linux-arm64.tar.gz"],
17+
sha256 = "cdd326205f923cd82386ccf40ec4e5875720a571b7e0ed04bbd1fda4af2a0b81",
18+
strip_prefix = "async-profiler-2.7-linux-arm64",
19+
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.7/async-profiler-2.7-linux-arm64.tar.gz"],
2020
)
2121

2222
http_archive(
2323
name = "async_profiler_macos",
2424
build_file = "//third_party/async_profiler:BUILD.async_profiler.bazel",
25-
sha256 = "cd046214b5edafd79878211e877a98fea483f7804c6e60f1ae240d3eac02fb86",
26-
strip_prefix = "async-profiler-2.6-macos",
27-
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.6/async-profiler-2.6-macos.zip"],
25+
sha256 = "4e109ba84bec6f0a62d7fde68c21a306b5caa53288bb5274e7726315b64dfe16",
26+
strip_prefix = "async-profiler-2.7-macos",
27+
urls = ["https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.7/async-profiler-2.7-macos.zip"],
2828
)

0 commit comments

Comments
 (0)