aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins.sh
blob: 275fc69f88b55a5ea681d181daa94a6edeae6e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e -x

cd ~/osmo-ci || (cd ~/ && git clone git://git.osmocom.org/osmo-ci && cd ~/osmo-ci)
git rev-parse HEAD
git status

git fetch && git checkout -f -B master origin/master

git rev-parse HEAD
git status

if [ `uname` = "Linux" ]; then
	scripts/osmo-ci-docker-rebuild.sh
fi