Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jan 23, 2025
1 parent d74871c commit bb800cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ jobs:
- name: Setup Ice Build Dependencies
uses: ./.github/actions/setup-dependencies

- name: Install clang-tidy
run: |
# This LLVM script will add the relevant LLVM PPA: https://apt.llvm.org/
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
chmod +x /tmp/llvm.sh
sudo /tmp/llvm.sh 19
sudo apt-get install -y clang-tidy-19
rm /tmp/llvm.sh
clang-tidy-19 --version
- name: Install bear
run: |
sudo apt-get update
Expand All @@ -50,16 +60,6 @@ jobs:
working-directory: cpp
run: bear -- make srcs

- name: Install clang-tidy
run: |
# This LLVM script will add the relevant LLVM PPA: https://apt.llvm.org/
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
chmod +x /tmp/llvm.sh
sudo /tmp/llvm.sh 19
sudo apt-get install -y clang-tidy-19
rm /tmp/llvm.sh
clang-tidy-19 --version
- name: Run Clang Tidy
working-directory: cpp
run: |
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/Ice/SSL/SSLEndpointI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#include "SSLConnectorI.h"
#include "SSLInstance.h"

#include <algorithm>

using namespace std;
using namespace Ice;
using namespace Ice::SSL;
Expand Down

0 comments on commit bb800cd

Please sign in to comment.