We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd51bd commit 4b24538Copy full SHA for 4b24538
1 file changed
.github/workflows/c-cpp.yml
@@ -17,12 +17,12 @@ jobs:
17
run: apt-get update && apt-get upgrade -y
18
- name: Install GCC-15 an CMake
19
run: apt-get install -y gcc-15 cmake
20
- - name: Install pip and conan
21
- run: apt install -y python3-pip && pip install conan
22
- name: Install Conan 2.0
23
- run: apt install python3-pip && pip install --break-system-packages conan
24
- - name: Autodetect a default conan profile
25
- run: conan profile detect --name=default
+ run: |
+ apt install -y pipx
+ pipx ensurepath
+ pipx install conan
+ conan profile detect --name=default
26
- name: Build and run unit tests
27
run: make CONAN_PROFILE=.github/workflows/gcc15_c++26
28
0 commit comments