forked from mikkeloscar/arch-travis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew-travis.sh
executable file
·67 lines (57 loc) · 1.65 KB
/
brew-travis.sh
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
#!/bin/bash
# Copyright (C) 2016 Mikkel Oscar Lyderik Larsen
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Script for setting up and running a travis-ci build in an up to date
# read value from .travis.yml
travis_yml() {
ruby -ryaml -e 'puts ARGV[1..-1].inject(YAML.load(File.read(ARGV[0]))) {|acc, key| acc[key] }' .travis.yml $@
}
run() {
"$@"
local ret=$?
if [ $ret -gt 0 ]; then
exit $ret
fi
}
as_normal() {
local cmd="$@"
run /bin/bash -c "$cmd"
}
read_config() {
local old_ifs=$IFS
IFS=$'\n'
CONFIG_BUILD_SCRIPTS=($(travis_yml brew script))
CONFIG_PACKAGES=($(travis_yml brew packages))
IFS=$old_ifs
}
# run build scripts defined in .travis.yml
build_scripts() {
if [ ${#CONFIG_BUILD_SCRIPTS[@]} -gt 0 ]; then
for script in "${CONFIG_BUILD_SCRIPTS[@]}"; do
as_normal $script
done
else
echo "No build scripts defined"
exit 1
fi
}
# install packages defined in .travis.yml
install_packages() {
as_normal "brew update"
as_normal "brew install ${CONFIG_PACKAGES[@]}"
}
read_config
install_packages
build_scripts