Work around OpenSSL/system sometimes not being found.

This commit is contained in:
Julian Groß 2025-02-28 13:16:31 +01:00
parent a57940ad93
commit 4c55f9d8b1
4 changed files with 20 additions and 4 deletions

View file

@ -281,7 +281,11 @@ jobs:
- name: Install Conan dependencies
shell: bash
run: conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
run: |
# 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 '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
done
- name: Upload Conan dependencies
continue-on-error: true

View file

@ -181,7 +181,11 @@ jobs:
- name: Install Conan dependencies
shell: bash
run: conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
run: |
# 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 '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
done
- name: Upload Conan dependencies
continue-on-error: true

View file

@ -238,7 +238,11 @@ jobs:
- name: Install Conan dependencies
shell: bash
run: conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
run: |
# 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 '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
done
- name: Upload Conan dependencies
continue-on-error: true

View file

@ -105,7 +105,11 @@ jobs:
- name: Install Conan dependencies
shell: bash
run: conan install . -s compiler.cppstd=$CONAN_CPPSTD -s build_type=$BUILD_TYPE -o '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
run: |
# 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 '&:with_qt='${CONAN_QT^} -b missing -pr:b=default -of build --format=json > build.json
done
- name: Upload Conan dependencies
continue-on-error: true