blob: 875368506f2129236bf1b812eba6262862bcca14 (
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
26
27
28
|
#!/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 "[ERROR] $image:$staging is out-of-date vs. release ($release)."
# Uncomment the following to update the staging manifest with the release version
# sed -i "s|$image,.*|$image,$release|g" $2
fi
done
exit $err
|