Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
0d472346
Commit
0d472346
authored
Jul 30, 2016
by
David Haynes
Browse files
Update gitlab-ci based on nander13's script
- right now it's the same -- let's see if it works
parent
9facc129
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
0d472346
types
:
-
build
-
test
image
:
ubuntu:14.04
build_Go
:
type
:
build
script
:
echo Building!
services
:
-
mysql:latest
test_Go
:
type
:
test
script
:
echo Testing!
variables
:
MYSQL_DATABASE
:
go
MYSQL_ROOT_PASSWORD
:
root
test
:
script
:
-
apt-get update -qy
-
apt-get install -y python-dev python-pip python-pip libldap2-dev mysql-client libmysqlclient-dev python-mysqldb libsasl2-dev libjpeg-dev git
-
pip install -r requirements.txt
-
cp go/settings/settings.py.template go/settings/settings.py
-
cp go/settings/secret.py.template go/settings/secret.py
-
export SECRET_KEY=$(dd if=/dev/urandom count=100 | tr -dc "A-Za-z0-9" | fold -w 60 | head -n1 2>/dev/null)
-
sed -i go/settings/secret.py -e 's/DB_NAME.*/DB_NAME = \"go\"/'
-
sed -i go/settings/secret.py -e 's/DB_USER.*/DB_USER = \"root\"/'
-
sed -i go/settings/secret.py -e 's/DB_PASSWORD.*/DB_PASSWORD = \"root\"/'
-
sed -i go/settings/secret.py -e 's/DB_HOST.*/DB_HOST = \"mysql\"/'
-
sed -i go/settings/secret.py -e 's/SECRET_KEY.*/SECRET_KEY = \"${SECRET_KEY}\"/'
-
cd go
-
export DJANGO_DEBUG="True"
-
python manage.py makemigrations
-
python manage.py migrate
-
echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('root', 'root@srct.gmu.edu', 'root') " | python ./manage.py shell
-
python manage.py test
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment