@@ -36,11 +36,11 @@ jobs:
36
36
# --- Build dependencies
37
37
- name : " Build dependencies to be shared by all sanitiser runs"
38
38
run : inv dev.cmake -b Debug
39
- - name : " Upload built CMake dependencies"
39
+ - name : " Upload built Conan dependencies"
40
40
uses : actions/upload-artifact@v2
41
41
with :
42
- name : cmake -cache
43
- path : /build/faabric
42
+ name : conan -cache
43
+ path : ' ~/.conan '
44
44
45
45
address-sanitiser :
46
46
if : github.event.pull_request.draft == false
@@ -68,11 +68,11 @@ jobs:
68
68
- name : " Ping redis"
69
69
run : redis-cli -h redis ping
70
70
# --- Build with thread sanitising
71
- - name : " Download CMake dependencies"
71
+ - name : " Download Conan dependencies"
72
72
uses : actions/download-artifact@v2
73
73
with :
74
- name : cmake -cache
75
- path : /build/faabric
74
+ name : conan -cache
75
+ path : /root/.conan
76
76
- name : " Build tests with address sanitising"
77
77
run : inv dev.sanitise Address --noclean
78
78
- name : " Run tests with address sanitising on and print to stderr to file"
@@ -107,11 +107,11 @@ jobs:
107
107
- name : " Ping redis"
108
108
run : redis-cli -h redis ping
109
109
# --- Build with thread sanitising
110
- - name : " Download CMake dependencies"
110
+ - name : " Download Conan dependencies"
111
111
uses : actions/download-artifact@v2
112
112
with :
113
- name : cmake -cache
114
- path : /build/faabric
113
+ name : conan -cache
114
+ path : /root/.conan
115
115
- name : " Build tests with thread sanitising"
116
116
run : inv dev.sanitise Thread --noclean
117
117
# --- Tests ---
@@ -147,11 +147,11 @@ jobs:
147
147
- name : " Ping redis"
148
148
run : redis-cli -h redis ping
149
149
# --- Build with thread sanitising
150
- - name : " Download CMake dependencies"
150
+ - name : " Download Conan dependencies"
151
151
uses : actions/download-artifact@v2
152
152
with :
153
- name : cmake -cache
154
- path : /build/faabric
153
+ name : conan -cache
154
+ path : /root/.conan
155
155
- name : " Build tests with undefined sanitising"
156
156
run : inv dev.sanitise Undefined --noclean
157
157
# --- Tests ---
@@ -187,11 +187,11 @@ jobs:
187
187
- name : " Ping redis"
188
188
run : redis-cli -h redis ping
189
189
# --- Build with thread sanitising
190
- - name : " Download CMake dependencies"
190
+ - name : " Download Conan dependencies"
191
191
uses : actions/download-artifact@v2
192
192
with :
193
- name : cmake -cache
194
- path : /build/faabric
193
+ name : conan -cache
194
+ path : /root/.conan
195
195
- name : " Build tests with leak sanitising"
196
196
run : inv dev.sanitise Leak --noclean
197
197
# --- Tests ---
0 commit comments