22 lines
453 B
Bash
Executable file
22 lines
453 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$ADTTMP" ]; then
|
|
ADTTMP=$(mktemp -d)
|
|
cleanup() {
|
|
rm -rf "$ADTTMP"
|
|
}
|
|
trap cleanup INT TERM EXIT
|
|
fi
|
|
|
|
cd $ADTTMP
|
|
|
|
exec 2>&1
|
|
set -ex
|
|
|
|
cd /usr/share/gitlab
|
|
su gitlab -c 'truncate -s 0 Gemfile.lock'
|
|
|
|
export $(cat /etc/gitlab/gitlab-debian.conf)
|
|
su gitlab -c "bundle install --with development test --local"
|
|
su gitlab -c "bundle exec rake -f ${AUTOPKGTEST_TMP}/debian/tests/spec.rake
|
|
#config 2/2 failed, controllers many failed
|