From 57617bcc89fc8196d1d5ed66c756b91ad236841c Mon Sep 17 00:00:00 2001 From: Alexander Arlt Date: Sun, 27 Feb 2022 21:09:20 -0500 Subject: [PATCH] aaaaaaaa --- .github/workflows/build_and_test.yml | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 7f91b9a..5076f6c 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -44,7 +44,7 @@ jobs: uses: actions/cache@v2 with: path: | - ${{env.HOME}}/.conan/data + /home/runner/.conan/data # The key is composed in a way that it gets properly invalidated: this must happen whenever vcpkg's Git commit id changes, or the list of packages changes. In this case a cache miss must happen and a new entry with a new key with be pushed to GitHub the cache service. # The key includes: hash of the vcpkg.json file, the hash of the vcpkg Git commit id, and the used vcpkg's triplet. The vcpkg's commit id would suffice, but computing an hash out it does not harm. # Note: given a key, the cache content is immutable. If a cache entry has been created improperly, in order the recreate the right content the key must be changed as well, and it must be brand new (i.e. not existing already). diff --git a/conanfile.py b/conanfile.py index 58c2e25..4b84753 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,5 +1,6 @@ from conans import ConanFile, CMake, tools + class autobahn_cppConan(ConanFile): name = "autobahn-cpp" version = "v20.8.1" @@ -23,4 +24,3 @@ def package(self): def package_id(self): self.info.header_only() -