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

Synch master #282

Merged
merged 2 commits into from
Nov 29, 2020
Merged
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
33 changes: 16 additions & 17 deletions .github/workflows/app_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,31 +352,30 @@ jobs:
conan config set general.revisions_enabled=True
conan config set general.parallel_download=8

- name: Cache conan cache?
# To avoid downloading the SDK all the time, we try to cache it
id: cacheconan
uses: actions/cache@v2
with:
path: |
~/.conan
/.conan
key: ${{ matrix.os }}-conan-cache-${{ env.CONAN_INSTALL_MD5 }}
# DLM: skip caching conan, causing too many problems
#- name: Cache conan cache?
# # To avoid downloading the SDK all the time, we try to cache it
# id: cacheconan
# uses: actions/cache@v2
# with:
# path: |
# ~/.conan
# key: ${{ matrix.os }}-conan-cache-${{ env.CONAN_INSTALL_MD5 }}

- name: Did restoring the conan-cache work? No
# If the SDK wasn't found in the cache
if: steps.cacheconan.outputs.cache-hit != 'true'
#if: steps.cacheconan.outputs.cache-hit != 'true'
run: |
echo "Conan cache not found"
echo "Create the conan data directory"
conan user

- name: Did restoring the conan-cache work? Yes
# If the SDK wasn't found in the cache
if: steps.cacheconan.outputs.cache-hit == 'true'
run: |
ls ~/.conan/
ls ~/.conan/data/
ls /.conan
#- name: Did restoring the conan-cache work? Yes
# # If the SDK wasn't found in the cache
# if: steps.cacheconan.outputs.cache-hit == 'true'
# run: |
# ls ~/.conan/
# ls ~/.conan/data/

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