File tree Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,32 @@ commands:
9
9
command : |
10
10
make clean
11
11
when : always
12
+ reposync :
13
+ steps :
14
+ - run :
15
+ shell : /bin/bash
16
+ name : " Fetch"
17
+ command : |
18
+ git fetch ;
19
+ when : always
20
+ - run :
21
+ shell : /bin/bash
22
+ name : " Pull"
23
+ command : |
24
+ git pull --all ;
25
+ when : on_success
26
+ - run :
27
+ shell : /bin/bash
28
+ name : " Sync Submodules"
29
+ command : |
30
+ git submodule sync ;
31
+ when : on_success
32
+ - run :
33
+ shell : /bin/bash
34
+ name : " Update Submodules"
35
+ command : |
36
+ git submodule update --init ;
37
+ when : on_success
12
38
13
39
parameters :
14
40
python-version :
29
55
working_directory : ~/python-repo
30
56
steps :
31
57
- checkout
32
- - run :
33
- name : " fetch and pull"
34
- command : |
35
- git fetch && git pull --all || : ;
58
+ - reposync
36
59
- run :
37
60
shell : /bin/bash
38
61
name : " install depends attempt"
You can’t perform that action at this time.
0 commit comments