Skip to content

Commit f26af4d

Browse files
authored
Merge pull request #281 from openstudiocoalition/disable_conan_cache
Disable conan cache
2 parents bbbd1d3 + e865c4f commit f26af4d

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

.github/workflows/app_build.yml

+16-17
Original file line numberDiff line numberDiff line change
@@ -352,31 +352,30 @@ jobs:
352352
conan config set general.revisions_enabled=True
353353
conan config set general.parallel_download=8
354354
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 }}
364364

365365
- name: Did restoring the conan-cache work? No
366366
# 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'
368368
run: |
369369
echo "Conan cache not found"
370370
echo "Create the conan data directory"
371371
conan user
372372
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/
380379

381380
- name: Create Build Environment and locate openstudio
382381
# Some projects don't allow in-source building, so create a separate build directory

0 commit comments

Comments
 (0)