File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
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
62
72
- name : script
63
73
if : matrix.DOCKER_IMAGE
64
74
run : |
65
- docker run --rm -i -v $PWD:$PWD -e "CI_SOURCE_PATH=$PWD" -e "HOME=$HOME" -e "ROS_DISTRO=${{ matrix.ROS_DISTRO }}" -e "OPENCV_VERSION=${{ matrix.OPENCV_VERSION }}" -e "TEST=${{ matrix.TEST }}" ${{ matrix.DOCKER_IMAGE }} sh -c "cd $PWD; /bin/bash .travis.sh"
75
+ docker run --rm -u $(id -u $USER) -i -v $PWD:$PWD -e "CI_SOURCE_PATH=$PWD" -e "HOME=$HOME" -e "ROS_DISTRO=${{ matrix.ROS_DISTRO }}" -e "OPENCV_VERSION=${{ matrix.OPENCV_VERSION }}" -e "TEST=${{ matrix.TEST }}" ${{ matrix.DOCKER_IMAGE }} sh -c "cd $PWD; /bin/bash .travis.sh"
Original file line number Diff line number Diff line change @@ -163,6 +163,11 @@ elif [ "$TEST" == "clang-tidy" ]; then
163
163
run-clang-tidy -fix -p $( dirname $file )
164
164
done
165
165
travis_time_end
166
+ ls -al ~ /catkin_ws
167
+ ls -al $CI_SOURCE_PATH /
168
+ ls -al $CI_SOURCE_PATH /.git/
169
+ cat $CI_SOURCE_PATH /.git/config
170
+ git -C $CI_SOURCE_PATH remote -v
166
171
git -C $CI_SOURCE_PATH --no-pager diff
167
172
git -C $CI_SOURCE_PATH diff-index --quiet HEAD -- .
168
173
You can’t perform that action at this time.
0 commit comments