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
a57aaf69
Commit
a57aaf69
authored
Jul 30, 2016
by
David Haynes
Browse files
looks like we need to have build and test together
- hmm
parent
76270332
Changes
1
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
a57aaf69
...
...
@@ -35,4 +35,21 @@ build_Go:
test_Go
:
type
:
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 makemigrations go
-
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