Skip to content

Commit

Permalink
Merge pull request #2240 from Exiv2/mainConanUpdate
Browse files Browse the repository at this point in the history
Fix CI jobs - Update conan packages
  • Loading branch information
piponazo authored May 19, 2022
2 parents e1ed1df + 0309cb0 commit 0594f86
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_PR_linux_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
- name: Conan common config
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/on_PR_linux_special_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
pip3 install gcovr
- name: Conan common config
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install valgrind ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
- name: Conan common config
run: |
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
- name: Conan common config
run: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install valgrind doxygen graphviz gettext ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
- name: Conan common config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_PR_linux_staticAnalysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: install dependencies
run: |
pip3 install conan==1.45.0
pip3 install conan==1.48.1
sudo add-apt-repository ppa:ubuntu-lxc/daily -y
wget -q -O - https://files.pvs-studio.com/etc/pubkey.txt |sudo apt-key add -
sudo wget -O /etc/apt/sources.list.d/viva64.list https://files.pvs-studio.com/etc/viva64.list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_PR_windows_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Install Conan & Common config
run: |
pip.exe install "conan==1.45.0"
pip.exe install "conan==1.48.1"
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.build_type=${{matrix.build_type}} default
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on_push_BasicWinLinMac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Install Conan & Common config
run: |
pip.exe install "conan==1.45.0"
pip.exe install "conan==1.48.1"
conan profile new --detect default
conan profile show default
conan profile update settings.compiler="Visual Studio" default
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install ninja-build
pip3 install conan==1.45.0
pip3 install conan==1.48.1
- name: Conan
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_push_ExtraJobsForMain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: install dependencies
run: |
pip3 install conan==1.45.0
pip3 install conan==1.48.1
pip install gcovr
- name: Conan common config
Expand Down
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def configure(self):
self.options['gtest'].shared = False

def requirements(self):
self.requires('zlib/1.2.11')
self.requires('zlib/1.2.12')

if self.options.webready:
self.requires('libcurl/7.79.0')
self.requires('libcurl/7.80.0')

if os_info.is_windows and self.options.iconv:
self.requires('libiconv/1.16')
Expand All @@ -37,7 +37,7 @@ def requirements(self):
if self.options.xmp:
self.requires('XmpSdk/2016.7@piponazo/stable') # from conan-piponazo
else:
self.requires('expat/2.4.1')
self.requires('expat/2.4.8')

def imports(self):
self.copy('*.dll', dst='bin', src='bin')
Expand Down

0 comments on commit 0594f86

Please sign in to comment.