1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 09:03:13 +02:00

Travis-CI: The job exceeded the maximum log length, and has been terminated.

Fantastic. https://github.com/travis-ci/travis-ci/issues/1382
This commit is contained in:
Bram Matthys
2019-01-18 15:31:14 +01:00
parent 013dd06aee
commit c726df5758
2 changed files with 12 additions and 6 deletions
+3 -3
View File
@@ -22,7 +22,7 @@ else
fi
# Install 'ircfly'
git clone https://github.com/unrealircd/ircfly.git
git clone -q https://github.com/unrealircd/ircfly.git
cd ircfly
bundle install
bundle exec rake build
@@ -34,10 +34,10 @@ fi
cd ..
# Install 'cipherscan'
git clone https://github.com/mozilla/cipherscan
git clone -q https://github.com/mozilla/cipherscan
# Install 'unrealircd-tests'
git clone https://github.com/unrealircd/unrealircd-tests.git
git clone -q https://github.com/unrealircd/unrealircd-tests.git
cd unrealircd-tests
bundle install
mv config.yaml.example config.yaml
+9 -3
View File
@@ -4,16 +4,22 @@
# It is not meant to be used by end-users
#
function fail()
{
echo "select-config failed: $*"
exit 1
}
function build_ssl {
DIR="$2"
URL="$1/$2.tar.gz"
savewd="$PWD"
cd ~
wget "$URL" || exit 1
tar xzvf $DIR.tar.gz
tar xzf $DIR.tar.gz
cd "$DIR"
(./configure --prefix=$HOME/ssl || ./config --prefix=$HOME/ssl -fPIC) || exit 1
(make -j2 && make install) || exit 1
(./configure --prefix=$HOME/ssl 1>/dev/null 2>&1 || ./config --prefix=$HOME/ssl -fPIC 1>/dev/null 2>&1 ) || fail "build_ssl: configure/config failed"
(make -j2 1>/dev/null 2>&1 && make install 1>/dev/null 2>&1) || fail "build_ssl: make failed"
cd "$savewd"
echo "SSLDIR=$HOME/ssl" >>config.settings
}