File tree Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Original file line number Diff line number Diff line change 35
35
steps :
36
36
- uses : actions/checkout@v2
37
37
name : checkout repo
38
+ - name : cache
39
+
40
+ env :
41
+ cache-name : cache-filecoin-ffi-proofs
42
+ version : v23
43
+ with :
44
+ path : /var/tmp/filecoin-proof-parameters
45
+ key : build-${{ env.cache-name }}-${{ env.version }}
38
46
- name : checkout submodules
39
47
shell : bash
40
48
run : |
65
73
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # has to be included to access other secrets
66
74
GITHUB_HUNTER_USERNAME : ${{ secrets.GITHUB_HUNTER_USERNAME }}
67
75
GITHUB_HUNTER_TOKEN : ${{ secrets.GITHUB_HUNTER_TOKEN }}
68
- run : cmake . -GNinja -Bbuild -D COVERAGE=ON
76
+ run : cmake . -GNinja -Bbuild -D COVERAGE=ON -D TESTING_PROOFS=ON
69
77
- name : build
70
78
run : cmake --build build -- -j2
71
79
- name : tests
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
name : checkout repo
17
+ - name : cache
18
+
19
+ env :
20
+ cache-name : cache-filecoin-ffi-proofs
21
+ version : v23
22
+ with :
23
+ path : /var/tmp/filecoin-proof-parameters
24
+ key : build-${{ env.cache-name }}-${{ env.version }}
17
25
- name : checkout submodules
18
26
shell : bash
19
27
run : |
33
41
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # has to be included to access other secrets
34
42
GITHUB_HUNTER_USERNAME : ${{ secrets.GITHUB_HUNTER_USERNAME }}
35
43
GITHUB_HUNTER_TOKEN : ${{ secrets.GITHUB_HUNTER_TOKEN }}
36
- run : cmake . -GNinja -Bbuild -D LSAN=ON
44
+ run : cmake . -GNinja -Bbuild -D LSAN=ON -D TESTING_PROOFS=ON
37
45
- name : build
38
46
run : cmake --build build -- -j2
39
47
- name : run tests
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
name : checkout repo
17
+ - name : cache
18
+
19
+ env :
20
+ cache-name : cache-filecoin-ffi-proofs
21
+ version : v23
22
+ with :
23
+ path : /var/tmp/filecoin-proof-parameters
24
+ key : build-${{ env.cache-name }}-${{ env.version }}
17
25
- name : checkout submodules
18
26
shell : bash
19
27
run : |
32
40
GITHUB_HUNTER_TOKEN : ${{ secrets.GITHUB_HUNTER_TOKEN }}
33
41
CFLAGS : " -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
34
42
CXXFLAGS : " -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
35
- run : cmake . -GNinja -Bbuild -D TSAN=ON
43
+ run : cmake . -GNinja -Bbuild -D TSAN=ON -D TESTING_PROOFS=ON
36
44
- name : build
37
45
run : cmake --build build -- -j2
38
46
- name : run tests
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v2
16
16
name : checkout repo
17
+ - name : cache
18
+
19
+ env :
20
+ cache-name : cache-filecoin-ffi-proofs
21
+ version : v23
22
+ with :
23
+ path : /var/tmp/filecoin-proof-parameters
24
+ key : build-${{ env.cache-name }}-${{ env.version }}
17
25
- name : checkout submodules
18
26
shell : bash
19
27
run : |
32
40
GITHUB_HUNTER_TOKEN : ${{ secrets.GITHUB_HUNTER_TOKEN }}
33
41
CFLAGS : " -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
34
42
CXXFLAGS : " -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
35
- run : cmake . -GNinja -Bbuild -D UBSAN=ON
43
+ run : cmake . -GNinja -Bbuild -D UBSAN=ON -D TESTING_PROOFS=ON
36
44
- name : build
37
45
run : cmake --build build -- -j2
38
46
- name : run tests
You can’t perform that action at this time.
0 commit comments