Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workaround for conan outage. #1939

Merged
merged 1 commit into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/on_PR_linux_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:

- name: Conan common config
run: |
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
conan profile update settings.compiler.libcxx=libstdc++11 default
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on_PR_linux_special_buils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default

Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default

Expand Down Expand Up @@ -106,6 +108,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default

Expand Down Expand Up @@ -144,6 +147,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/on_PR_windows_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- name: Install Conan & Common config
run: |
pip.exe install "conan==1.39.0"
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
conan config set storage.path=$Env:GITHUB_WORKSPACE/conanCache
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/on_push_BasicWinLinMac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Install Conan & Common config
run: |
pip.exe install "conan==1.39.0"
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile show default

Expand Down Expand Up @@ -69,6 +70,7 @@ jobs:
- name: Conan
run: |
mkdir build && cd build
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default
conan profile show default
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/on_push_ExtraJobsForMain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.compiler.libcxx=libstdc++11 default

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:

- name: Conan common config
run: |
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.build_type=Release default
conan profile update settings.compiler.libcxx=libstdc++11 default
Expand Down Expand Up @@ -115,6 +116,7 @@ jobs:
- name: Install Conan & Common config
run: |
pip.exe install "conan==1.39.0"
conan config install https://github.com/conan-io/conanclientcert.git
conan profile new --detect default
conan profile update settings.build_type=Release default
conan config set storage.path=$Env:GITHUB_WORKSPACE/conanCache
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ install:
- cd %APPVEYOR_BUILD_FOLDER%

before_build:
- cmd: conan config install https://github.com/conan-io/conanclientcert.git
- cmd: conan remote list
- cmd: conan config set storage.path=c:\Users\appveyor\conanCache
- cmd: conan profile new --detect default
Expand Down
1 change: 1 addition & 0 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ else
fi

conan --version
conan config install https://github.com/conan-io/conanclientcert.git
conan config set storage.path=~/conanData
conan profile new default --detect

Expand Down