2019-02-25 15:49:03 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-05-15 21:37:06 +03:00
|
|
|
if [[ -n ${DRONE_SOURCE_BRANCH} && ! ${DRONE_SOURCE_BRANCH} =~ version(\/noid)?\/([0-9.]+) ]]; then
|
2019-02-25 15:49:03 +03:00
|
|
|
echo "Skip CA bundle check"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Fetching latest ca-bundle.crt ..."
|
|
|
|
curl -o resources/config/ca-bundle.crt https://curl.haxx.se/ca/cacert.pem
|
|
|
|
|
|
|
|
echo
|
|
|
|
outdated=$(git diff --name-only | grep "resources/config/ca-bundle.crt")
|
|
|
|
if [ "${outdated}" = "resources/config/ca-bundle.crt" ]; then
|
|
|
|
echo "CA bundle is not up to date."
|
|
|
|
echo "Please run: bash build/ca-bundle-checker.sh"
|
|
|
|
echo "And commit the result"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "CA bundle is up to date."
|
|
|
|
exit 0
|