-
Notifications
You must be signed in to change notification settings - Fork 2
/
bartbot
executable file
·196 lines (178 loc) · 4.49 KB
/
bartbot
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#!/bin/bash
################################################################################
# Copyright 2012 Robert C. Curtis. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY ROBERT C. CURTIS ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ROBERT C. CURTIS OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
# The views and conclusions contained in the software and documentation
# are those of the authors and should not be interpreted as representing
# official policies, either expressed or implied, of Robert C. Curtis.
################################################################################
BARTVERSION=DEV
# Color constants
NO="\033[0m"
BR="\033[30m"
RD="\033[31m"
GR="\033[32m"
YL="\033[33m"
BL="\033[34m"
MG="\033[35m"
CY="\033[36m"
HOSTOS=$(uname -s)
# Usage command
usage () {
echo "usage: bartbot [OPTIONS] <project file>"
echo "OPTIONS:"
echo " -h, --help Print usage"
echo " --version Print version"
echo " --tag Tag revision if build succeeds"
echo " --settag <> Use supplied tag instead of generated tag"
echo " --release Run the release phase of the build"
echo " --init <repo> Create a new project file"
}
# Error command
error () {
echo -e "[ERROR]" $* 1>&2
}
# Warning command
warn () {
echo -e "[WARNING]" $* 1>&2
}
# Info command
info () {
echo -e "[INFO]" $* 1>&2
}
# Defaults
TAGOPT=
SETTAGOPT=
RELEASEOPT=
DOTFILEOPT=
INITPRJ=0
REPO=
# Handle Options
while [ "${1:0:1}" == "-" ]; do
# Help
if [ "$1" == "-h" -o "$1" == "--help" ]; then
usage
exit 0
fi
# Version
if [ "$1" == "--version" ]; then
echo "$BARTVERSION"
exit 0
fi
# Tag
if [ "$1" == "--tag" ]; then
TAGOPT="--tag"
shift && continue
fi
# Set Tag
if [ "$1" == "--settag" ]; then
shift
SETTAGOPT="--settag $1"
shift && continue
fi
# Release
if [ "$1" == "--release" ]; then
RELEASEOPT="--release"
shift && continue
fi
# Init
if [ "$1" == "--init" ]; then
shift
INITPRJ=1
REPO=$1
shift && continue
fi
warn "Unrecognized option: $1"
shift
done
# if no arguments, print usage
if [ "$#" -eq 0 ]; then
usage
exit 1
fi
PRJFILE="$1"
shift
# Run init if necessary
if [ "$INITPRJ" -eq 1 ]; then
if [ -e "$PRJFILE" ]; then
error "Project file already exists"
exit 1
fi
echo "REPO=\"${REPO}\"" > "$PRJFILE"
if [ $? -ne 0 ]; then
error "Could not create project file"
exit 1
fi
echo "BRANCH=master" >> "$PRJFILE"
echo "DESTDIR=$(dirname $PRJFILE)" >> "$PRJFILE"
echo "LASTBUILD=" >> "$PRJFILE"
echo "DOTFILE=" >> "$PRJFILE"
exit 0
fi
if [ ! -f "$PRJFILE" ]; then
error "Project file does not exist"
fi
source "$PRJFILE"
if [ -z "$REPO" ]; then
error "REPO not set"
exit 1
fi
if [ -z "$BRANCH" ]; then
error "BRANCH not set"
exit 1
fi
if [ ! -d "$DESTDIR" ]; then
error "DESTDIR does not exist"
exit 1
fi
if [ -n "$DOTFILE" ]; then
DOTFILEOPT="--dotfile $DOTFILE"
fi
CURRENTCHANGE=$(bart --branch $BRANCH --head "$REPO")
if [ "$CURRENTCHANGE" == "$LASTBUILD" ]; then
info "No new changes"
exit 0
fi
pushd "$DESTDIR"
if [ $? -ne 0 ]; then
error "Could not CD to DESTDIR"
exit 1
fi
bart --branch $BRANCH $TAGOPT $SETTAGOPT $RELEASEOPT $DOTFILEOPT "$REPO"
if [ $? -ne 0 ]; then
error "Build Failed"
exit 1
fi
popd
# write out change to lastbuild
if [ "$HOSTOS" == "Darwin" ]; then
SEDINPLACE="sed -i ''"
else
SEDINPLACE="sed --in-place"
fi
$SEDINPLACE -e 's/^LASTBUILD=\(.*\)$/LASTBUILD='${CURRENTCHANGE}'/' "$PRJFILE"