mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 22:27:13 +02:00
Work around OpenSSL/system sometimes not being found.
This commit is contained in:
parent
a57940ad93
commit
4c55f9d8b1
4 changed files with 20 additions and 4 deletions
6
.github/workflows/linux_server_build.yml
vendored
6
.github/workflows/linux_server_build.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/master_build.yml
vendored
6
.github/workflows/master_build.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/pr_build.yml
vendored
6
.github/workflows/pr_build.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/release_build.yml
vendored
6
.github/workflows/release_build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue