blob: 86f8221e9c29077ce70a7d8537c4c742bdf04ae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
if [ "$#" -ne 2 ]; then
echo This script compares docker-manifest.csv with docker-manifest-staging.csv to verify that staging has later versions than release.
echo "$0 <docker-manifest.csv> <docker-manifest-staging.csv>"
exit 1
fi
if [ -z "$WORKSPACE" ]; then
export WORKSPACE=`git rev-parse --show-toplevel`
fi
export LC_ALL=C
err=0
for line in $(join -t, $1 $2 | tail -n +2); do
image=$(echo $line | cut -d , -f 1)
release=$(echo $line | cut -d , -f 2)
staging=$(echo $line | cut -d , -f 3)
if [[ "${staging}_" < "${release}_" ]]; then
echo "[WARNING] $image:$staging is older than $release."
fi
done
exit $err
|