pcsc-tools: remove myself as maintainer
[feed/packages.git] / .travis_do.sh
1 #!/bin/bash
2 #
3 # MIT Alexander Couzens <lynxis@fe80.eu>
4
5 set -e
6
7 SDK_HOME="$HOME/sdk"
8 SDK_PATH=https://downloads.lede-project.org/snapshots/targets/ar71xx/generic/
9 SDK=openwrt-sdk-ar71xx-generic_gcc-5.5.0_musl.Linux-x86_64
10 PACKAGES_DIR="$PWD"
11
12 echo_red() { printf "\033[1;31m$*\033[m\n"; }
13 echo_green() { printf "\033[1;32m$*\033[m\n"; }
14 echo_blue() { printf "\033[1;34m$*\033[m\n"; }
15
16 exec_status() {
17 PATTERN="$1"
18 shift
19 while :;do sleep 590;echo "still running (please don't kill me Travis)";done &
20 ("$@" 2>&1) | tee logoutput
21 R=${PIPESTATUS[0]}
22 kill $! && wait $! 2>/dev/null
23 if [ $R -ne 0 ]; then
24 echo_red "=> '$*' failed (return code $R)"
25 return 1
26 fi
27 if grep -qE "$PATTERN" logoutput; then
28 echo_red "=> '$*' failed (log matched '$PATTERN')"
29 return 1
30 fi
31
32 echo_green "=> '$*' successful"
33 return 0
34 }
35
36 # download will run on the `before_script` step
37 # The travis cache will be used (all files under $HOME/sdk/). Meaning
38 # We don't have to download the file again
39 download_sdk() {
40 mkdir -p "$SDK_HOME"
41 cd "$SDK_HOME"
42
43 echo_blue "=== download SDK"
44 wget "$SDK_PATH/sha256sums" -O sha256sums
45 wget "$SDK_PATH/sha256sums.gpg" -O sha256sums.asc
46
47 # LEDE Build System (LEDE GnuPG key for unattended build jobs)
48 gpg --import $PACKAGES_DIR/.travis/626471F1.asc
49 echo '54CC74307A2C6DC9CE618269CD84BCED626471F1:6:' | gpg --import-ownertrust
50 # LEDE Release Builder (17.01 "Reboot" Signing Key)
51 gpg --import $PACKAGES_DIR/.travis/D52BBB6B.asc
52 echo 'B09BE781AE8A0CD4702FDCD3833C6010D52BBB6B:6:' | gpg --import-ownertrust
53
54 gpg --verify sha256sums.asc
55 grep "$SDK" sha256sums > sha256sums.small
56
57 # if missing, outdated or invalid, download again
58 if ! sha256sum -c ./sha256sums.small ; then
59 wget "$SDK_PATH/$SDK.tar.xz" -O "$SDK.tar.xz"
60 fi
61
62 # check again and fail here if the file is still bad
63 sha256sum -c ./sha256sums.small
64 echo_blue "=== SDK is up-to-date"
65 }
66
67 # test_package will run on the `script` step.
68 # test_package call make download check for very new/modified package
69 test_packages2() {
70 local commit_range=$TRAVIS_COMMIT_RANGE
71 if [ -z "$TRAVIS_PULL_REQUEST_SHA" ]; then
72 echo_blue "Using only the latest commit, since we're not in a Pull Request"
73 commit_range=HEAD~1
74 fi
75
76 # search for new or modified packages. PKGS will hold a list of package like 'admin/muninlite admin/monit ...'
77 PKGS=$(git diff --diff-filter=d --name-only "$commit_range" | grep 'Makefile$' | grep -v '/files/' | awk -F'/Makefile' '{ print $1 }')
78
79 if [ -z "$PKGS" ] ; then
80 echo_blue "No new or modified packages found!"
81 return 0
82 fi
83
84 echo_blue "=== Found new/modified packages:"
85 for pkg in $PKGS ; do
86 echo "===+ $pkg"
87 done
88
89 echo_blue "=== Setting up SDK"
90 tmp_path=$(mktemp -d)
91 cd "$tmp_path"
92 tar Jxf "$SDK_HOME/$SDK.tar.xz" --strip=1
93
94 # use github mirrors to spare lede servers
95 cat > feeds.conf <<EOF
96 src-git base https://github.com/lede-project/source.git
97 src-link packages $PACKAGES_DIR
98 src-git luci https://github.com/openwrt/luci.git
99 EOF
100
101 # enable BUILD_LOG
102 sed -i '1s/^/config BUILD_LOG\n\tbool\n\tdefault y\n\n/' Config-build.in
103
104 ./scripts/feeds update -a > /dev/null
105 ./scripts/feeds install -a > /dev/null
106 make defconfig > /dev/null
107 echo_blue "=== Setting up SDK done"
108
109 RET=0
110 # E.g: pkg_dir => admin/muninlite
111 # pkg_name => muninlite
112 for pkg_dir in $PKGS ; do
113 pkg_name=$(echo "$pkg_dir" | awk -F/ '{ print $NF }')
114 echo_blue "=== $pkg_name: Starting quick tests"
115
116 exec_status 'WARNING|ERROR' make "package/$pkg_name/download" V=s || RET=1
117 exec_status 'WARNING|ERROR' make "package/$pkg_name/check" V=s || RET=1
118
119 echo_blue "=== $pkg_name: quick tests done"
120 done
121
122 [ $RET -ne 0 ] && return $RET
123
124 for pkg_dir in $PKGS ; do
125 pkg_name=$(echo "$pkg_dir" | awk -F/ '{ print $NF }')
126 echo_blue "=== $pkg_name: Starting compile test"
127
128 # we can't enable verbose built else we often hit Travis limits
129 # on log size and the job get killed
130 exec_status '^ERROR' make "package/$pkg_name/compile" -j3 || RET=1
131
132 echo_blue "=== $pkg_name: compile test done"
133
134 echo_blue "=== $pkg_name: begin compile logs"
135 for f in $(find logs/package/feeds/packages/$pkg_name/ -type f); do
136 echo_blue "Printing last 200 lines of $f"
137 tail -n200 "$f"
138 done
139 echo_blue "=== $pkg_name: end compile logs"
140
141 echo_blue "=== $pkg_name: begin packages sizes"
142 du -ba bin/
143 echo_blue "=== $pkg_name: end packages sizes"
144 done
145
146 return $RET
147 }
148
149 test_commits() {
150 RET=0
151 if [ -z "$TRAVIS_PULL_REQUEST_SHA" ]; then
152 echo_blue "Skipping commits tests (not in a Pull Request)"
153 return 0
154 fi
155 for commit in $(git rev-list ${TRAVIS_COMMIT_RANGE/.../..}); do
156 echo_blue "=== Checking commit '$commit'"
157 if git show --format='%P' -s $commit | grep -qF ' '; then
158 echo_red "Pull request should not include merge commits"
159 RET=1
160 fi
161
162 author="$(git show -s --format=%aN $commit)"
163 if echo $author | grep -q '\S\+\s\+\S\+'; then
164 echo_green "Author name ($author) seems ok"
165 else
166 echo_red "Author name ($author) need to be your real name 'firstname lastname'"
167 RET=1
168 fi
169
170 subject="$(git show -s --format=%s $commit)"
171 if echo "$subject" | grep -q -e '^[0-9A-Za-z,/_-]\+: ' -e '^Revert '; then
172 echo_green "Commit subject line seems ok ($subject)"
173 else
174 echo_red "Commit subject line MUST start with '<package name>: ' ($subject)"
175 RET=1
176 fi
177
178 body="$(git show -s --format=%b $commit)"
179 sob="$(git show -s --format='Signed-off-by: %aN <%aE>' $commit)"
180 if echo "$body" | grep -qF "$sob"; then
181 echo_green "Signed-off-by match author"
182 else
183 echo_red "Signed-off-by is missing or doesn't match author (should be '$sob')"
184 RET=1
185 fi
186 done
187
188 return $RET
189 }
190
191 test_packages() {
192 test_commits && test_packages2 || return 1
193 }
194
195 echo_blue "=== Travis ENV"
196 env
197 echo_blue "=== Travis ENV"
198
199 if [ -n "$TRAVIS_PULL_REQUEST_SHA" ]; then
200 while true; do
201 # if clone depth is too small, git rev-list / diff return incorrect or empty results
202 C="$(git rev-list ${TRAVIS_COMMIT_RANGE/.../..} | tail -n1)" 2>/dev/null
203 [ -n "$C" -a "$C" != "a22de9b74cf9579d1ce7e6cf1845b4afa4277b00" ] && break
204 echo_blue "Fetching 50 commits more"
205 git fetch origin --deepen=50
206 done
207 fi
208
209 if [ $# -ne 1 ] ; then
210 cat <<EOF
211 Usage: $0 (download_sdk|test_packages)
212
213 download_sdk - download the SDK to $HOME/sdk.tar.xz
214 test_packages - do a make check on the package
215 EOF
216 exit 1
217 fi
218
219 $@