Skip to content

Commit

Permalink
[CI] Fix CI failures on Ubuntu 24.04 (#2686)
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb authored May 30, 2024
1 parent c42dcca commit c5269cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
CXX: /usr/bin/g++-14
PROTOBUF_VERSION: 21.12
run: |
sudo apt remove needrestart #refer: https://github.com/actions/runner-images/issues/9937
sudo -E ./ci/setup_googletest.sh
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/install_protobuf.sh
Expand Down Expand Up @@ -73,6 +74,7 @@ jobs:
CXX: /usr/bin/g++-14
PROTOBUF_VERSION: 21.12
run: |
sudo apt remove needrestart #refer: https://github.com/actions/runner-images/issues/9937
sudo -E ./ci/setup_googletest.sh
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/install_protobuf.sh
Expand Down Expand Up @@ -105,6 +107,7 @@ jobs:
CXX: /usr/bin/clang++-18
PROTOBUF_VERSION: 21.12
run: |
sudo apt remove needrestart #refer: https://github.com/actions/runner-images/issues/9937
sudo -E ./ci/setup_googletest.sh
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/install_protobuf.sh
Expand Down Expand Up @@ -137,6 +140,7 @@ jobs:
CXX: /usr/bin/clang++-18
PROTOBUF_VERSION: 21.12
run: |
sudo apt remove needrestart #refer: https://github.com/actions/runner-images/issues/9937
sudo -E ./ci/setup_googletest.sh
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/install_protobuf.sh
Expand Down Expand Up @@ -169,6 +173,7 @@ jobs:
CXX: /usr/bin/clang++-18
PROTOBUF_VERSION: 21.12
run: |
sudo apt remove needrestart #refer: https://github.com/actions/runner-images/issues/9937
sudo -E ./ci/setup_googletest.sh
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/install_protobuf.sh
Expand Down Expand Up @@ -730,7 +735,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: setup
run: sudo ./ci/install_format_tools.sh
run: sudo apt remove needrestart && sudo ./ci/install_format_tools.sh #refer: https://github.com/actions/runner-images/issues/9937
- name: run tests
run: ./ci/do_ci.sh format

Expand Down

2 comments on commit c5269cd

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp sdk Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: c5269cd Previous: c42dcca Ratio
BM_BaselineBuffer/2 11413676.738739014 ns/iter 2528412.8189086914 ns/iter 4.51
BM_BaselineBuffer/4 14846146.10671997 ns/iter 2578565.1170846187 ns/iter 5.76
BM_LockFreeBuffer/2 8345904.350280762 ns/iter 1134691.9536590576 ns/iter 7.36
BM_LockFreeBuffer/4 10360925.197601318 ns/iter 1151117.6404818683 ns/iter 9.00
BM_SumAggregation 18117119.28423713 ns/iter 7559989.628038908 ns/iter 2.40

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp api Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: c5269cd Previous: c42dcca Ratio
BM_ProcYieldSpinLockThrashing/4/process_time/real_time 1.6502310531307953 ms/iter 0.7332468789721293 ms/iter 2.25
BM_NaiveSpinLockThrashing/2/process_time/real_time 0.362879060292932 ms/iter 0.17940449087243332 ms/iter 2.02

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.