diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-09-16 00:28:59 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-09-16 00:28:59 +0200 |
commit | 1b464bfe03be2f05f509a96740a9f9d024e8217d (patch) | |
tree | 1cef5d2fc5a0a353b50e6f1511b9c4f2ff6fef9a /doc/ci/examples | |
parent | f2d8902341b298a842d02d2a21a938085d4840b7 (diff) | |
download | gitlab-ce-1b464bfe03be2f05f509a96740a9f9d024e8217d.tar.gz |
Update documentation and config files
Diffstat (limited to 'doc/ci/examples')
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/ci/examples/test-and-deploy-python-application-to-heroku.md b/doc/ci/examples/test-and-deploy-python-application-to-heroku.md index 859adf5f465..036b03dd6b9 100644 --- a/doc/ci/examples/test-and-deploy-python-application-to-heroku.md +++ b/doc/ci/examples/test-and-deploy-python-application-to-heroku.md @@ -55,11 +55,11 @@ You can do this through the [Dashboard](https://dashboard.heroku.com/). ### Create runner First install [Docker Engine](https://docs.docker.com/installation/). To build this project you also need to have [GitLab Runner](https://about.gitlab.com/gitlab-ci/#gitlab-runner). -You can use public runners available on `ci.gitlab.com`, but you can register your own: +You can use public runners available on `gitlab.com/ci`, but you can register your own: ``` gitlab-ci-multi-runner register \ --non-interactive \ - --url "https://ci.gitlab.com/" \ + --url "https://gitlab.com/ci/" \ --registration-token "PROJECT_REGISTRATION_TOKEN" \ --description "python-3.2" \ --executor "docker" \ diff --git a/doc/ci/examples/test-and-deploy-ruby-application-to-heroku.md b/doc/ci/examples/test-and-deploy-ruby-application-to-heroku.md index a1265ae8833..d2a872f1934 100644 --- a/doc/ci/examples/test-and-deploy-ruby-application-to-heroku.md +++ b/doc/ci/examples/test-and-deploy-ruby-application-to-heroku.md @@ -50,11 +50,11 @@ You can do this through the [Dashboard](https://dashboard.heroku.com/). ### Create runner First install [Docker Engine](https://docs.docker.com/installation/). To build this project you also need to have [GitLab Runner](https://about.gitlab.com/gitlab-ci/#gitlab-runner). -You can use public runners available on `ci.gitlab.com`, but you can register your own: +You can use public runners available on `gitlab.com/ci`, but you can register your own: ``` gitlab-ci-multi-runner register \ --non-interactive \ - --url "https://ci.gitlab.com/" \ + --url "https://gitlab.com/ci/" \ --registration-token "PROJECT_REGISTRATION_TOKEN" \ --description "ruby-2.1" \ --executor "docker" \ diff --git a/doc/ci/examples/test-clojure-application.md b/doc/ci/examples/test-clojure-application.md index 6c6faf8f928..eaee94a10f1 100644 --- a/doc/ci/examples/test-clojure-application.md +++ b/doc/ci/examples/test-clojure-application.md @@ -32,4 +32,4 @@ In before script we install JRE and [Leiningen](http://leiningen.org/). Sample project uses [migratus](https://github.com/yogthos/migratus) library to manage database migrations. So we added database migration as last step of `before_script` section -You can use public runners available on `ci.gitlab.com` for testing your application with such configuration. +You can use public runners available on `gitlab.com` for testing your application with such configuration. |