Skip to content

Commit

Permalink
should work now
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Jan 3, 2022
1 parent a5ce559 commit a2af052
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ jobs:
with:
submodules: recursive

- name: Set Win env vars
id: cache-conan
uses: actions/cache@v2
if: matrix.os == 'windows-latest'
run: |
echo "CONAN_HOME=%USERPROFILE%\.conan" >> $GITHUB_ENV
echo "CONAN_BUILD=$GITHUB_WORKSPACE\conan_build" >> $GITHUB_ENV
- name: Cache Conan dependencies
id: cache-conan
uses: actions/cache@v2
Expand All @@ -62,13 +70,12 @@ jobs:
env:
TEST: $env:USERPROFILE
run: |
echo "Win env": %USERPROFILE%
echo "Wrapped env": %TEST%
echo "Github env": $env:USERPROFILE
echo "wrapped conan home ${{ env.CONAN_HOME }}"
echo "wrapped conan build ${{ env.CONAN_BUILD }}"
echo "Dir conan_build"
dir conan_build
dir "${{ env.CONAN_BUILD }}"
echo "Dir .conan"
dir %USERPROFILE%\.conan
dir "${{ env.CONAN_HOME }}"
shell: cmd

- name: Set up Windows Python ${{ matrix.python_version }}
Expand Down

0 comments on commit a2af052

Please sign in to comment.