diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-07 15:18:46 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-09-30 13:45:15 +0200 |
commit | 9c0b965d817c105565152452a09362468cfda8ca (patch) | |
tree | 990ccdc329bb69ff50b9f4911fe44dd47aaa8201 /scripts | |
parent | 6591b594d4907be0c235a9c05e40ac5bbb995d94 (diff) | |
download | gitlab-ce-9c0b965d817c105565152452a09362468cfda8ca.tar.gz |
Use custom Ruby images to test builds
It allows us to remove redundant steps of installing required dependencies for every build.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prepare_build.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/prepare_build.sh b/scripts/prepare_build.sh index 6e987e7d9c9..1eaafdce389 100755 --- a/scripts/prepare_build.sh +++ b/scripts/prepare_build.sh @@ -16,21 +16,6 @@ retry() { } if [ -f /.dockerenv ] || [ -f ./dockerinit ]; then - mkdir -p vendor/apt - - # Install phantomjs package - pushd vendor/apt - PHANTOMJS_FILE="phantomjs-$PHANTOMJS_VERSION-linux-x86_64" - if [ ! -d "$PHANTOMJS_FILE" ]; then - curl -q -L "https://s3.amazonaws.com/gitlab-build-helpers/$PHANTOMJS_FILE.tar.bz2" | tar jx - fi - cp "$PHANTOMJS_FILE/bin/phantomjs" "/usr/bin/" - popd - - # Try to install packages - retry 'apt-get update -yqqq; apt-get -o dir::cache::archives="vendor/apt" install -y -qq --force-yes \ - libicu-dev libkrb5-dev cmake nodejs postgresql-client mysql-client unzip' - cp config/database.yml.mysql config/database.yml sed -i 's/username:.*/username: root/g' config/database.yml sed -i 's/password:.*/password:/g' config/database.yml |