File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 30
30
- TEST : debian-unstable
31
31
DOCKER_IMAGE : debian:unstable
32
32
steps :
33
+ - name : Setup OS
34
+ run : |
35
+ sudo apt-get update -y
36
+ sudo apt-get upgrade -y
37
+ - name : Setup Git
38
+ run : |
39
+ sudo apt-get install -y git
33
40
- name : Chcekout
34
41
uses : actions/checkout@v2
42
+ with :
43
+ fetch-depth : 0
44
+ submodules : recursive
35
45
# python3_check
36
46
- name : python3_check
37
47
if : matrix.CHECK_PYTHON3_COMPILE == true
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ elif [ "$TEST" == "clang-tidy" ]; then
163
163
run-clang-tidy -fix -p $( dirname $file )
164
164
done
165
165
travis_time_end
166
+ sudo chown -R $( whoami) $CI_SOURCE_PATH
166
167
git -C $CI_SOURCE_PATH --no-pager diff
167
168
git -C $CI_SOURCE_PATH diff-index --quiet HEAD -- .
168
169
You can’t perform that action at this time.
0 commit comments