Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • v1.1
  • operations
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.0
  • v1.0.1
11 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 753 B
    # run the test suite
    
    tests_old_ubuntu:
        image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:16.04
        tags:
            - docker
        script:
            - pip3 install . --no-deps
            - pytest
    
    tests_new_ubuntu:
        image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:rolling
        tags:
            - docker
        script:
            - pip3 install . --no-deps
            - pytest-3
    
    
    # generate the documentation
    
    pages:
        image: registry.gitlab.lis-lab.fr:5005/skmad-suite/madarrays/ubuntu:rolling
        tags:
            - docker
        only:
            - master
        script:
            - pip3 install . --no-deps
            - python3 setup.py build_sphinx
            - cp -r build/sphinx/html public
        artifacts:
            paths:
                - public