summaryrefslogtreecommitdiffstats
path: root/.travis/nightlies.sh
blob: 88239793a66044d98bf0be904c0254dd849e6e58 (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
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash

set -e

if [ ! -f .gitignore ]; then
	echo "Run as ./travis/$(basename "$0") from top level directory of git repository"
	exit 1
fi

export GIT_MAIL="pawel+bot@netdata.cloud"
export GIT_USER="netdatabot"
echo "--- Initialize git configuration ---"
git config user.email "${GIT_MAIL}"
git config user.name "${GIT_USER}"

echo "--- UPDATE VERSION FILE ---"
LAST_TAG=$(git describe --abbrev=0 --tags)
NO_COMMITS=$(git rev-list "$LAST_TAG"..HEAD --count)
if [ "$NO_COMMITS" == "$(rev <packaging/version | cut -d- -f 2 | rev)" ]; then
	echo "Nothing changed since last nightly build"
	exit 0
fi
echo "$LAST_TAG-$((NO_COMMITS + 1))-nightly" >packaging/version
git add packaging/version

echo "---- GENERATE CHANGELOG -----"
.travis/generate_changelog.sh
git add CHANGELOG.md

echo "---- UPLOAD FILE CHANGES ----"
git commit -m '[ci skip] create nightly packages and update changelog'
git push "https://${GITHUB_TOKEN}:@$(git config --get remote.origin.url | sed -e 's/^https:\/\///')"

echo "---- BUILD & PUBLISH DOCKER IMAGES ----"
export REPOSITORY="netdata/netdata"
packaging/docker/build.sh

echo "---- BUILD ARTIFACTS ----"
.travis/create_artifacts.sh