File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5454
5555 cpp-test :
5656 docker :
57- - image : alpine:3.12.1
57+ - image : alpine:3.13.5
5858 auth :
5959 username : maxitg
6060 password : $DOCKERHUB_PASSWORD
6565 - run :
6666 name : Install Required Tools
6767 command : |
68- apk add --no-cache bash git g++ make cmake clang py-pip shellcheck shfmt grep npm
68+ apk add --no-cache bash git g++ make cmake clang py-pip shellcheck grep npm
69+ apk add --no-cache shfmt --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community
6970 pip install cpplint
7071 npm install -g markdownlint-cli
7172
9899
99100 cpp-32-test :
100101 docker :
101- - image : i386/alpine:3.12.1
102+ - image : i386/alpine:3.13.5
102103 auth :
103104 username : maxitg
104105 password : $DOCKERHUB_PASSWORD
Original file line number Diff line number Diff line change 5151exitStatus=0
5252
5353for file in " ${filesToLint[@]} " ; do
54- if [[ " $file " == * .png || \
55- " $file " == Dependencies/* || \
56- " $file " == libSetReplace/WolframHeaders/* || \
54+ if [[ " $file " == * .png ||
55+ " $file " == Dependencies/* ||
56+ " $file " == libSetReplace/WolframHeaders/* ||
5757 " $file " == * .xcodeproj/* ]]; then
5858 :
5959 elif [[ " $file " == * .cpp || " $file " == * .hpp || " $file " == * .h ]]; then
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ widthLimit="$2"
1212grepOutput=$( grep --line-number --color=never --extended-regexp " .{$(( widthLimit + 1 )) }" " $filename " || :)
1313
1414if [ -n " $grepOutput " ]; then
15- filename=" $filename "
1615 echo " $grepOutput " | awk -v filename=" $filename " ' {print filename ":" $0}'
1716 exit 1
1817fi
You can’t perform that action at this time.
0 commit comments