mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 20:07:07 +02:00
Work around OpenSSL/system sometimes not being found.
This commit is contained in:
parent
4119ab2aa1
commit
e0fc35ebc4
1 changed files with 4 additions and 1 deletions
5
.github/workflows/pr_build.yml
vendored
5
.github/workflows/pr_build.yml
vendored
|
@ -247,7 +247,10 @@ jobs:
|
|||
- name: Install Conan dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:qt_source='${qt_source} -b missing -pr:b=default -of build
|
||||
# Run twice to work around OpenSSL not being found. See: https://github.com/overte-org/overte-conan-recipes/issues/1
|
||||
for counter in {1..2}; do
|
||||
conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:qt_source='${qt_source} -b missing -pr:b=default -of build
|
||||
done
|
||||
|
||||
- name: Cleanup Conan dependencies
|
||||
run: conan cache clean "*" -sbd
|
||||
|
|
Loading…
Reference in a new issue