|
|
@ -27,7 +27,13 @@ jobs:
|
|
|
|
- name: Set up Python
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
python-version: 3.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Restore conan cache
|
|
|
|
|
|
|
|
uses: actions/cache@v2
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: ${{github.workspace}}/conanCache
|
|
|
|
|
|
|
|
key: ${{runner.os}}-push-win-${{ hashFiles('conanfile.py') }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install Conan & Common config
|
|
|
|
- name: Install Conan & Common config
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
@ -36,6 +42,7 @@ jobs:
|
|
|
|
conan profile show default
|
|
|
|
conan profile show default
|
|
|
|
conan profile update settings.compiler="Visual Studio" default
|
|
|
|
conan profile update settings.compiler="Visual Studio" default
|
|
|
|
conan profile update settings.compiler.version=17 default
|
|
|
|
conan profile update settings.compiler.version=17 default
|
|
|
|
|
|
|
|
conan config set storage.path=$Env:GITHUB_WORKSPACE/conanCache
|
|
|
|
|
|
|
|
|
|
|
|
- name: Run Conan
|
|
|
|
- name: Run Conan
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|