Commit 40e03def authored by Marcel Amirault's avatar Marcel Amirault

We should not use /ce links

All doc links should use /ee
parent effc3ac2
...@@ -135,7 +135,7 @@ Example response: ...@@ -135,7 +135,7 @@ Example response:
```json ```json
{ {
"name": "Ruby", "name": "Ruby",
"content": "# This file is a template, and might need editing before it works on your project.\n# Official language image. Look for the different tagged releases at:\n# https://hub.docker.com/r/library/ruby/tags/\nimage: \"ruby:2.5\"\n\n# Pick zero or more services to be used on all builds.\n# Only needed when using a docker container to run your tests in.\n# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service\nservices:\n - mysql:latest\n - redis:latest\n - postgres:latest\n\nvariables:\n POSTGRES_DB: database_name\n\n# Cache gems in between builds\ncache:\n paths:\n - vendor/ruby\n\n# This is a basic example for a gem or script which doesn't use\n# services such as redis or postgres\nbefore_script:\n - ruby -v # Print out ruby version for debugging\n # Uncomment next line if your rails app needs a JS runtime:\n # - apt-get update -q && apt-get install nodejs -yqq\n - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby\n\n# Optional - Delete if not using `rubocop`\nrubocop:\n script:\n - rubocop\n\nrspec:\n script:\n - rspec spec\n\nrails:\n variables:\n DATABASE_URL: \"postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB\"\n script:\n - rails db:migrate\n - rails db:seed\n - rails test\n\n# This deploy job uses a simple deploy flow to Heroku, other providers, e.g. AWS Elastic Beanstalk\n# are supported too: https://github.com/travis-ci/dpl\ndeploy:\n type: deploy\n environment: production\n script:\n - gem install dpl\n - dpl --provider=heroku --app=$HEROKU_APP_NAME --api-key=$HEROKU_PRODUCTION_KEY\n" "content": "# This file is a template, and might need editing before it works on your project.\n# Official language image. Look for the different tagged releases at:\n# https://hub.docker.com/r/library/ruby/tags/\nimage: \"ruby:2.5\"\n\n# Pick zero or more services to be used on all builds.\n# Only needed when using a docker container to run your tests in.\n# Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service\nservices:\n - mysql:latest\n - redis:latest\n - postgres:latest\n\nvariables:\n POSTGRES_DB: database_name\n\n# Cache gems in between builds\ncache:\n paths:\n - vendor/ruby\n\n# This is a basic example for a gem or script which doesn't use\n# services such as redis or postgres\nbefore_script:\n - ruby -v # Print out ruby version for debugging\n # Uncomment next line if your rails app needs a JS runtime:\n # - apt-get update -q && apt-get install nodejs -yqq\n - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby\n\n# Optional - Delete if not using `rubocop`\nrubocop:\n script:\n - rubocop\n\nrspec:\n script:\n - rspec spec\n\nrails:\n variables:\n DATABASE_URL: \"postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB\"\n script:\n - rails db:migrate\n - rails db:seed\n - rails test\n\n# This deploy job uses a simple deploy flow to Heroku, other providers, e.g. AWS Elastic Beanstalk\n# are supported too: https://github.com/travis-ci/dpl\ndeploy:\n type: deploy\n environment: production\n script:\n - gem install dpl\n - dpl --provider=heroku --app=$HEROKU_APP_NAME --api-key=$HEROKU_PRODUCTION_KEY\n"
} }
``` ```
......
...@@ -4,7 +4,7 @@ image: "crystallang/crystal:latest" ...@@ -4,7 +4,7 @@ image: "crystallang/crystal:latest"
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
# services: # services:
# - mysql:latest # - mysql:latest
# - redis:latest # - redis:latest
......
...@@ -4,7 +4,7 @@ image: python:latest ...@@ -4,7 +4,7 @@ image: python:latest
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services: services:
- mysql:latest - mysql:latest
- postgres:latest - postgres:latest
...@@ -13,7 +13,7 @@ variables: ...@@ -13,7 +13,7 @@ variables:
POSTGRES_DB: database_name POSTGRES_DB: database_name
# This folder is cached between builds # This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache # http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache: cache:
paths: paths:
- ~/.cache/pip/ - ~/.cache/pip/
......
...@@ -2,7 +2,7 @@ image: elixir:latest ...@@ -2,7 +2,7 @@ image: elixir:latest
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services: services:
- mysql:latest - mysql:latest
- redis:latest - redis:latest
......
...@@ -4,7 +4,7 @@ image: php:latest ...@@ -4,7 +4,7 @@ image: php:latest
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services: services:
- mysql:latest - mysql:latest
...@@ -13,7 +13,7 @@ variables: ...@@ -13,7 +13,7 @@ variables:
MYSQL_ROOT_PASSWORD: secret MYSQL_ROOT_PASSWORD: secret
# This folder is cached between builds # This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache # http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache: cache:
paths: paths:
- vendor/ - vendor/
......
...@@ -4,14 +4,14 @@ image: node:latest ...@@ -4,14 +4,14 @@ image: node:latest
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services: services:
- mysql:latest - mysql:latest
- redis:latest - redis:latest
- postgres:latest - postgres:latest
# This folder is cached between builds # This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache # http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache: cache:
paths: paths:
- node_modules/ - node_modules/
......
...@@ -19,7 +19,7 @@ before_script: ...@@ -19,7 +19,7 @@ before_script:
- php composer.phar install - php composer.phar install
# Bring in any services we need http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service # Bring in any services we need http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
# See http://docs.gitlab.com/ce/ci/services/README.html for examples. # See http://docs.gitlab.com/ee/ci/services/README.html for examples.
services: services:
- mysql:5.7 - mysql:5.7
......
image: node:latest image: node:latest
# This folder is cached between builds # This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache # http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache: cache:
paths: paths:
- node_modules/ - node_modules/
......
...@@ -4,7 +4,7 @@ image: "ruby:2.5" ...@@ -4,7 +4,7 @@ image: "ruby:2.5"
# Pick zero or more services to be used on all builds. # Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
services: services:
- mysql:latest - mysql:latest
- redis:latest - redis:latest
......
...@@ -4,7 +4,7 @@ image: "rust:latest" ...@@ -4,7 +4,7 @@ image: "rust:latest"
# Optional: Pick zero or more services to be used on all builds. # Optional: Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in. # Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-a-service # Check out: http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service
# services: # services:
# - mysql:latest # - mysql:latest
# - redis:latest # - redis:latest
......
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