@@ -352,31 +352,30 @@ jobs:
352
352
conan config set general.revisions_enabled=True
353
353
conan config set general.parallel_download=8
354
354
355
- - name : Cache conan cache?
356
- # To avoid downloading the SDK all the time, we try to cache it
357
- id : cacheconan
358
- uses : actions/cache@v2
359
- with :
360
- path : |
361
- ~/.conan
362
- /.conan
363
- key : ${{ matrix.os }}-conan-cache-${{ env.CONAN_INSTALL_MD5 }}
355
+ # DLM: skip caching conan, causing too many problems
356
+ # - name: Cache conan cache?
357
+ # # To avoid downloading the SDK all the time, we try to cache it
358
+ # id: cacheconan
359
+ # uses: actions/cache@v2
360
+ # with:
361
+ # path: |
362
+ # ~ /.conan
363
+ # key: ${{ matrix.os }}-conan-cache-${{ env.CONAN_INSTALL_MD5 }}
364
364
365
365
- name : Did restoring the conan-cache work? No
366
366
# If the SDK wasn't found in the cache
367
- if : steps.cacheconan.outputs.cache-hit != 'true'
367
+ # if: steps.cacheconan.outputs.cache-hit != 'true'
368
368
run : |
369
369
echo "Conan cache not found"
370
370
echo "Create the conan data directory"
371
371
conan user
372
372
373
- - name : Did restoring the conan-cache work? Yes
374
- # If the SDK wasn't found in the cache
375
- if : steps.cacheconan.outputs.cache-hit == 'true'
376
- run : |
377
- ls ~/.conan/
378
- ls ~/.conan/data/
379
- ls /.conan
373
+ # - name: Did restoring the conan-cache work? Yes
374
+ # # If the SDK wasn't found in the cache
375
+ # if: steps.cacheconan.outputs.cache-hit == 'true'
376
+ # run: |
377
+ # ls ~/.conan/
378
+ # ls ~/.conan/data/
380
379
381
380
- name : Create Build Environment and locate openstudio
382
381
# Some projects don't allow in-source building, so create a separate build directory
0 commit comments