From ab33a37d8bb8b328105484f9b635d7542f7bc82f Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 21 Sep 2017 19:58:44 +0200 Subject: [PATCH] Update README instructions --- templates/README.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/templates/README.md b/templates/README.md index b2e8dd4..0fa1a14 100644 --- a/templates/README.md +++ b/templates/README.md @@ -26,19 +26,11 @@ Remove the `.travis.yml` file from your package: $ git rm -f .travis.yml ``` -Copy the appropriate yml template for the CI builds: - -* For python-only packages, it should be - [ci-for-python-only.yml](templates/ci-for-python-only.yml) -* For C/C++ extensions, it should be - [ci-for-cxx-extensions.yml](templates/ci-for-cxx-extensions.yml) +Copy the stock yml template for the CI builds: ```sh -# for pure python -$ curl -k --silent https://gitlab.idiap.ch/bob/bob.admin/raw/master/templates/ci-for-python-only.yml > .gitlab-ci.yml -# for c/c++ extensions -$ curl -k --silent https://gitlab.idiap.ch/bob/bob.admin/raw/master/templates/ci-for-cxx-extensions.yml | tr -d '\r' > .gitlab-ci.yml +$ curl -k --silent https://gitlab.idiap.ch/bob/bob.admin/raw/master/templates/gitlab-ci.yml > .gitlab-ci.yml ``` Add the file to git: -- GitLab