File tree 4 files changed +9
-10
lines changed
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 13
13
- name : Set up Clang
14
14
run : |
15
15
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
16
- sudo apt install libc++-15-dev libc++abi-15-dev
16
+ sudo apt-get install -y libc++-15-dev libc++abi-15-dev
17
17
18
18
- name : Build Conan Dependencies
19
19
run : |
Original file line number Diff line number Diff line change @@ -11,20 +11,20 @@ jobs:
11
11
- uses : actions/checkout@v3
12
12
13
13
- name : Set up Clang
14
- uses : egor-tensin/setup-clang@v1
15
- with :
16
- version : 15
14
+ run : |
15
+ sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
16
+ sudo apt-get install -y libc++-15-dev libc++abi-15-dev
17
17
18
- - name : Install Dependencies
18
+ - name : Install Cppcheck
19
19
run : |
20
20
sudo apt-get update
21
- sudo apt-get install -y libstdc++6 cppcheck
21
+ sudo apt-get install -y cppcheck
22
22
23
23
- name : Build Conan Dependencies
24
24
run : |
25
25
pip install conan==1.60.0
26
26
conan config set general.revisions_enabled=True
27
- conan install . --build=missing -pr=./conanprofile.txt -if ./build
27
+ conan install . --build=missing -pr=./conanprofile.txt -if ./build -s andreasbuhr-cppcoro:compiler.libcxx=libc++
28
28
29
29
- name : Configure CMake
30
30
run : cmake -B ${{github.workspace}}/build -DFAIL_ON_WARNINGS=ON
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ sqlite3/3.39.2#bcbc402aeced01e756cb1e7199a7f188
19
19
# Added to fix clashes between dependencies
20
20
libcurl/7.85.0#63e97620160ac0273d500d743786e4dd
21
21
openssl/1.1.1q#d09951d2f9ed326551512e63839d0767
22
- zlib/1.2.12#82202701ea360c0863f1db5008067122
22
+ zlib/1.2.12#b1fd071d8a2234a488b3ff74a3526f81
23
23
24
24
# Added to fix new recipes build issues
25
25
bzip2/1.0.8#0c10430c6fe37dec1b37a7bc1fbbe51b
@@ -38,6 +38,7 @@ aws-crt-cpp/0.17.23#f3272a7219d4d58a1e4976b68da820e5
38
38
aws-checksums/0.1.12#d27222a24697575e39cb59c034d4cd19
39
39
m4/1.4.19#7bf4b7de37a545f40f65aeb26e4f135f
40
40
pkgconf/1.9.3#02904517fb960fa340bee15bef847751
41
+ libtool/2.4.6#5c0876c3f4d1d47b56c56cdd4e14202e
41
42
42
43
# In case of library build issues:
43
44
# 1. conan remove "LIB_NAME*"
Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ auto CallAsCoroutine [[nodiscard]] (const pplx::task<T> &task)
43
43
if (!exception_message.empty ()) {
44
44
throw cpp::MessageException{std::move (exception_message)};
45
45
}
46
-
47
- Expects (false );
48
46
}
49
47
} // namespace vh::restsdk
50
48
You can’t perform that action at this time.
0 commit comments