From e0fc35ebc41f6d8ff60cac812426d96274849c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Fri, 7 Mar 2025 12:21:50 +0100 Subject: [PATCH] Work around OpenSSL/system sometimes not being found. --- .github/workflows/pr_build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index d610a43e1a..97a55e521d 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -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