Skip to content

Commit 1b53303

Browse files
authored
ci: upgrade conan version on github actions (#2021)
1 parent 65fad9d commit 1b53303

File tree

6 files changed

+12
-24
lines changed

6 files changed

+12
-24
lines changed

.github/workflows/on_PR_linux_matrix.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ jobs:
1919
- name: install dependencies
2020
run: |
2121
sudo apt-get install ninja-build
22-
pip3 install conan==1.39.0
22+
pip3 install conan==1.43.0
2323
2424
- name: Conan common config
2525
run: |
26-
conan config install https://github.com/conan-io/conanclientcert.git
2726
conan profile new --detect default
2827
conan profile update settings.build_type=${{matrix.build_type}} default
2928
conan profile update settings.compiler.libcxx=libstdc++11 default

.github/workflows/on_PR_linux_special_buils.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@ jobs:
1616
- name: install dependencies
1717
run: |
1818
sudo apt-get install ninja-build
19-
pip3 install conan==1.39.0
19+
pip3 install conan==1.43.0
2020
2121
- name: Conan common config
2222
run: |
23-
conan config install https://github.com/conan-io/conanclientcert.git
2423
conan profile new --detect default
2524
conan profile update settings.compiler.libcxx=libstdc++11 default
2625
@@ -65,11 +64,10 @@ jobs:
6564
run: |
6665
sudo apt-get update
6766
sudo apt-get install valgrind ninja-build
68-
pip3 install conan==1.39.0
67+
pip3 install conan==1.43.0
6968
7069
- name: Conan common config
7170
run: |
72-
conan config install https://github.com/conan-io/conanclientcert.git
7371
conan profile new --detect default
7472
conan profile update settings.compiler.libcxx=libstdc++11 default
7573
@@ -104,11 +102,10 @@ jobs:
104102
- name: install dependencies
105103
run: |
106104
sudo apt-get install ninja-build
107-
pip3 install conan==1.39.0
105+
pip3 install conan==1.43.0
108106
109107
- name: Conan common config
110108
run: |
111-
conan config install https://github.com/conan-io/conanclientcert.git
112109
conan profile new --detect default
113110
conan profile update settings.compiler.libcxx=libstdc++11 default
114111
@@ -143,11 +140,10 @@ jobs:
143140
run: |
144141
sudo apt-get update
145142
sudo apt-get install valgrind doxygen graphviz gettext
146-
pip3 install conan==1.39.0
143+
pip3 install conan==1.43.0
147144
148145
- name: Conan common config
149146
run: |
150-
conan config install https://github.com/conan-io/conanclientcert.git
151147
conan profile new --detect default
152148
conan profile update settings.compiler.libcxx=libstdc++11 default
153149

.github/workflows/on_PR_windows_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Install Conan & Common config
4848
run: |
49-
pip.exe install "conan==1.39.0"
49+
pip.exe install "conan==1.43.0"
5050
conan config install https://github.com/conan-io/conanclientcert.git
5151
conan profile new --detect default
5252
conan profile update settings.build_type=${{matrix.build_type}} default

.github/workflows/on_push_BasicWinLinMac.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131

3232
- name: Install Conan & Common config
3333
run: |
34-
pip.exe install "conan==1.39.0"
35-
conan config install https://github.com/conan-io/conanclientcert.git
34+
pip.exe install "conan==1.43.0"
3635
conan profile new --detect default
3736
conan profile show default
3837
@@ -65,12 +64,11 @@ jobs:
6564
- name: install dependencies
6665
run: |
6766
sudo apt-get install ninja-build
68-
pip3 install conan==1.39.0
67+
pip3 install conan==1.43.0
6968
7069
- name: Conan
7170
run: |
7271
mkdir build && cd build
73-
conan config install https://github.com/conan-io/conanclientcert.git
7472
conan profile new --detect default
7573
conan profile update settings.compiler.libcxx=libstdc++11 default
7674
conan profile show default

.github/workflows/on_push_ExtraJobsForMain.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ jobs:
1717

1818
- name: install dependencies
1919
run: |
20-
pip3 install conan==1.39.0
20+
pip3 install conan==1.43.0
2121
2222
- name: Conan common config
2323
run: |
24-
conan config install https://github.com/conan-io/conanclientcert.git
2524
conan profile new --detect default
2625
conan profile update settings.compiler.libcxx=libstdc++11 default
2726

.github/workflows/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,11 @@ jobs:
2121

2222
- name: Install dependencies
2323
run: |
24-
sudo apt-get install ninja-build
25-
sudo apt-get install gettext
26-
pip3 install conan==1.39.0
27-
sudo apt-get install doxygen
28-
sudo apt-get install graphviz
24+
sudo apt-get install ninja-build gettext doxygen graphviz
25+
pip3 install conan==1.43.0
2926
3027
- name: Conan common config
3128
run: |
32-
conan config install https://github.com/conan-io/conanclientcert.git
3329
conan profile new --detect default
3430
conan profile update settings.build_type=Release default
3531
conan profile update settings.compiler.libcxx=libstdc++11 default
@@ -117,7 +113,7 @@ jobs:
117113
118114
- name: Install Conan & Common config
119115
run: |
120-
pip.exe install "conan==1.39.0"
116+
pip.exe install "conan==1.43.0"
121117
conan config install https://github.com/conan-io/conanclientcert.git
122118
conan profile new --detect default
123119
conan profile update settings.build_type=Release default

0 commit comments

Comments
 (0)