File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -30,21 +30,21 @@ commands:
30
30
- run :
31
31
name : Test
32
32
command : |
33
- mkdir -p ~ /workspace/tests
33
+ mkdir -p /workspace/tests
34
34
make -C opt test SHOW=1
35
- cp test/logs/* ~ /workspace/tests
35
+ cp test/logs/* /workspace/tests
36
36
- run :
37
37
name : Package
38
- command : make -C opt pack BRANCH="${CIRCLE_BRANCH//[^A-Za-z0-9._-]/_}" INTO=~ /workspace/packages SHOW=1
38
+ command : make -C opt pack BRANCH="${CIRCLE_BRANCH//[^A-Za-z0-9._-]/_}" INTO=/workspace/packages SHOW=1
39
39
- persist_to_workspace :
40
- root : ~ /workspace
40
+ root : /workspace
41
41
paths :
42
42
- ' packages/release/*.zip'
43
43
- ' packages/release/*.tgz'
44
44
- ' packages/branch/*.zip'
45
45
- ' packages/branch/*.tgz'
46
46
- store_test_results :
47
- path : ~ /workspace/tests
47
+ path : /workspace/tests
48
48
deploy :
49
49
parameters :
50
50
from :
69
69
macos :
70
70
xcode : 10.2.1
71
71
steps :
72
+ - run :
73
+ name : Set up workspace
74
+ command : >-
75
+ sudo mkdir -p /workspace;
76
+ sudo chown $USER /workspace
72
77
- ci_steps :
73
78
platform : macosx
74
79
@@ -80,11 +85,11 @@ jobs:
80
85
- image : ' redislabsmodules/rmbuilder:latest'
81
86
steps :
82
87
- attach_workspace :
83
- at : ~ /workspace
88
+ at : /workspace
84
89
- deploy :
85
- from : ~ /workspace/packages/<<parameters.package>>
90
+ from : /workspace/packages/<<parameters.package>>
86
91
- store_artifacts :
87
- path : ~ /workspace/packages/<<parameters.package>>
92
+ path : /workspace/packages/<<parameters.package>>
88
93
89
94
deploy_docs :
90
95
docker :
You can’t perform that action at this time.
0 commit comments