From 9d13c2aaa5f8e8d721ffc9081221c51a79ab1e3d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Keck <Jean-Baptiste.Keck@imag.fr> Date: Sat, 18 Apr 2020 17:10:36 +0200 Subject: [PATCH] get rid of graph_tool, closes #43 --- ci/README.rst | 48 +----------------------------------------------- 1 file changed, 1 insertion(+), 47 deletions(-) diff --git a/ci/README.rst b/ci/README.rst index 21b8d4d40..5be2a79d9 100644 --- a/ci/README.rst +++ b/ci/README.rst @@ -1,50 +1,4 @@ Continuous integration howto ============================ -DRAFT !! - - -Docker reminder ---------------- - -Use docker_images/osname/Dockerfile to create a docker image : - -For example:: - - cd docker_images/debian - docker build -t fperignon/hysop - - -To start the image:: - - docker run -ti fperignon/hysop bash - -Images list:: - - docker images - -Then tag and push image on docker hub (might need login):: - - docker tag image_id fperignon/hysop:debian - docker push fperignon/hysop:debian - -Pick image id in docker images list. - - -Gitlab-ci ---------- - -To use a given docker image in job: - -image: fperignon/hysop:debian - - -The image will be pulled from docker hub. - -yml driver ----------- - -See gitlab-ci documentation : http://docs.gitlab.com/ce/ci/yaml/README.html - -In script, use -DCI_CONFIG=<something> option for cmake to send runner information to dashboard. - +See scripts in utils to build, run, push and pull the docker image for continuous integration tests. -- GitLab