Commit b924d666 authored by Evan Read's avatar Evan Read

Merge branch 'patch-54' into 'master'

upgrate example ymal file, change type to stage.

See merge request gitlab-org/gitlab-ce!27992
parents d4292f30 419e7a10
...@@ -9,7 +9,12 @@ You can checkout the [example source](https://gitlab.com/ayufan/python-getting-s ...@@ -9,7 +9,12 @@ You can checkout the [example source](https://gitlab.com/ayufan/python-getting-s
This is what the `.gitlab-ci.yml` file looks like for this project: This is what the `.gitlab-ci.yml` file looks like for this project:
```yaml ```yaml
stages:
- test
- deploy
test: test:
stage: test
script: script:
# this configures Django application to use attached postgres database that is run on `postgres` host # this configures Django application to use attached postgres database that is run on `postgres` host
- export DATABASE_URL=postgres://postgres:@postgres:5432/python-test-app - export DATABASE_URL=postgres://postgres:@postgres:5432/python-test-app
...@@ -19,7 +24,7 @@ test: ...@@ -19,7 +24,7 @@ test:
- python manage.py test - python manage.py test
staging: staging:
type: deploy stage: deploy
script: script:
- apt-get update -qy - apt-get update -qy
- apt-get install -y ruby-dev - apt-get install -y ruby-dev
...@@ -29,7 +34,7 @@ staging: ...@@ -29,7 +34,7 @@ staging:
- master - master
production: production:
type: deploy stage: deploy
script: script:
- apt-get update -qy - apt-get update -qy
- apt-get install -y ruby-dev - apt-get install -y ruby-dev
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment