File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 18
18
image : ubuntu:24.04@sha256:a08e551cb33850e4740772b38217fc1796a66da2506d312abe51acda354ff061
19
19
timeout-minutes : 10
20
20
steps :
21
+ - name : Install Git
22
+ run : |
23
+ apt-get update
24
+ apt-get install -y git
25
+
26
+ - name : Configure Git safe directory
27
+ run : git config --global --add safe.directory "$GITHUB_WORKSPACE"
28
+
21
29
- uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
22
30
23
31
- id : setup-java
@@ -37,11 +45,16 @@ jobs:
37
45
cd sdk/trace/build
38
46
java -jar libs/opentelemetry-sdk-trace-*-jmh.jar -rf json SpanBenchmark SpanPipelineBenchmark ExporterBenchmark
39
47
40
- - name : Install Git # since Git isn't available in the container image used above
48
+ - name : Debug git environment
41
49
run : |
42
- apt-get update
43
- apt-get install -y git
44
-
50
+ pwd
51
+ ls -la
52
+ git status
53
+ echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
54
+
55
+ - name : Use CLA approved github bot
56
+ run : .github/scripts/use-cla-approved-github-bot.sh
57
+
45
58
- name : Store benchmark results
46
59
uses : benchmark-action/github-action-benchmark@d48d326b4ca9ba73ca0cd0d59f108f9e02a381c7 # v1.20.4
47
60
with :
You can’t perform that action at this time.
0 commit comments