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

Update .gitlab-ci.yml

parent abbad601
Branches
Tags
No related merge requests found
Pipeline #14588 failed
# run the test suite # run the test suite
tests: tests:
image: registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04 image: docker:latest
services:
- docker:dind # Docker-in-Docker pour exécuter les commandes Docker
variables:
DOCKER_TLS_CERTDIR: "" # Désactive TLS dans dind
tags: tags:
- docker - docker
before_script:
- 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: script:
- docker --tls-verify=false pull registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04 - docker run registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04 python3 setup.py install
- python3 setup.py install - docker run registry.gitlab.lis-lab.fr:5005/dev/scikit-multimodallearn/ubuntu:22.04 pytest-3
- pytest-3
coverage: '/^TOTAL.+?(\d+\%)$/' coverage: '/^TOTAL.+?(\d+\%)$/'
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment