Skip to content
Snippets Groups Projects
Commit 60d36d50 authored by Dominique Benielli's avatar Dominique Benielli
Browse files

Update .gitlab-ci.yml

parent 9525ab97
No related branches found
No related tags found
No related merge requests found
Pipeline #14589 failed
# run the test suite
tests:
image: docker:latest
image: docker:20.10.16
services:
- docker:dind # Docker-in-Docker pour exécuter les commandes Docker
variables:
DOCKER_TLS_CERTDIR: "" # Désactive TLS dans dind
tags:
- docker
DOCKER_TLS_CERTDIR: "" # Désactive la gestion TLS dans Docker-in-Docker
DOCKER_HOST: tcp://docker:2375 # Utilise Docker via TCP sans TLS
DOCKER_OPTS: "--insecure-registry registry.gitlab.lis-lab.fr:5005" # Ajoute l'option pour ignorer la vérification TLS
before_script:
- echo "Pulling Docker image with TLS disabled..."
- docker login registry.gitlab.lis-lab.fr:5005 -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD
- docker pull registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04 || true
script:
......@@ -18,6 +19,7 @@ tests:
paths:
- htmlcov/
# generate the documentation
doc:
image: registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment