Skip to content

Commit 57617bc

Browse files
committed
aaaaaaaa
1 parent b027d35 commit 57617bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/cache@v2
4545
with:
4646
path: |
47-
${{env.HOME}}/.conan/data
47+
/home/runner/.conan/data
4848
# 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.
4949
# 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.
5050
# 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).

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from conans import ConanFile, CMake, tools
22

3+
34
class autobahn_cppConan(ConanFile):
45
name = "autobahn-cpp"
56
version = "v20.8.1"
@@ -23,4 +24,3 @@ def package(self):
2324

2425
def package_id(self):
2526
self.info.header_only()
26-

0 commit comments

Comments
 (0)