mirror of
https://github.com/luzifer-docker/awscli.git
synced 2024-11-08 10:20:01 +00:00
59 lines
1.3 KiB
Bash
Executable file
59 lines
1.3 KiB
Bash
Executable file
#!/bin/bash -e
|
|
|
|
HOST_OS=$(uname -s)
|
|
|
|
### ---- ###
|
|
|
|
echo "Switch back to master"
|
|
git checkout master
|
|
git reset --hard origin/master
|
|
|
|
### ---- ###
|
|
|
|
if ! [ -e jq ]; then
|
|
echo "Loading local copy of jq-1.5"
|
|
|
|
case ${HOST_OS} in
|
|
Linux)
|
|
curl -sSLo ./jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
|
|
;;
|
|
Darwin)
|
|
curl -sSLo ./jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-osx-amd64
|
|
;;
|
|
*)
|
|
echo "/!\\ Unable to download jq for ${HOST_OS}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
chmod +x jq
|
|
fi
|
|
|
|
### ---- ###
|
|
|
|
echo "Fetching latest version number of awscli"
|
|
|
|
AWSCLI_VERSION=$(curl -sSL https://pypi.python.org/pypi/awscli/json | ./jq -r .info.version)
|
|
|
|
if ( git tag -l ${AWSCLI_VERSION} | grep -q ${AWSCLI_VERSION} ); then
|
|
echo "/!\\ Already got a tag for version ${AWSCLI_VERSION}, stopping now"
|
|
exit 0
|
|
fi
|
|
|
|
echo "Writing requirements.txt"
|
|
echo "awscli==${AWSCLI_VERSION}" > requirements.txt
|
|
|
|
### ---- ###
|
|
|
|
echo "Testing build..."
|
|
docker build .
|
|
|
|
### ---- ###
|
|
|
|
echo "Updating repository..."
|
|
git add requirements.txt
|
|
git -c user.name='travis' -c user.email='travis' \
|
|
commit -m "awscli ${AWSCLI_VERSION}"
|
|
git tag ${AWSCLI_VERSION}
|
|
|
|
git push -q https://${GH_USER}:${GH_TOKEN}@github.com/luzifer-docker/awscli master --tags
|