Skip to content
Snippets Groups Projects
.gitlab-ci.yml 569 B
Newer Older
Simon Oehrl's avatar
Simon Oehrl committed
variables:
    GIT_STRATEGY: none
  
api_test:
Simon Oehrl's avatar
Simon Oehrl committed
    tags:
        - centos
        - docker
    artifacts:
        paths:
        - insite/tests/docker-compose.log
        expire_in: 1 week
        when: always
    script:
        - rm -rf insite
Simon Oehrl's avatar
Simon Oehrl committed
        - git clone --branch feature/add-test-pipeline --single-branch --recurse-submodules https://devhub.vr.rwth-aachen.de/VR-Group/in-situ-pipeline/insite.git
Simon Oehrl's avatar
Simon Oehrl committed
        - cd insite/access-node
Simon Oehrl's avatar
Simon Oehrl committed
        - git checkout $CI_COMMIT_SHA
Simon Oehrl's avatar
Simon Oehrl committed
        - cd ../tests
        - pip3 install --user -r requirements.txt
        - pytest
Simon Oehrl's avatar
Simon Oehrl committed