Skip to content
Snippets Groups Projects
.gitlab-ci.yml 2.36 KiB
Newer Older
## © University of Southampton IT Innovation Centre, 2018
##
## Copyright in this software belongs to University of Southampton
## IT Innovation Centre of Gamma House, Enterprise Road, 
## Chilworth Science Park, Southampton, SO16 7NS, UK.
##
## This software may not be used, sold, licensed, transferred, copied
## or reproduced in whole or in part in any manner or form or in or
## on any media by any person other than in accordance with the terms
## of the Licence Agreement supplied with the software, or otherwise
## without the prior written consent of the copyright owners.
##
## This software is distributed WITHOUT ANY WARRANTY, without even the
## implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE, except where stated in the Licence Agreement supplied with
## the software.
##
##      Created By :            Michael Boniface
##      Created Date :          21-03-2018
##      Created for Project :   FLAME
MJB's avatar
MJB committed
stages:  
MJB's avatar
MJB committed
  - build
MJB's avatar
MJB committed

build:tests:
  stage: build
Michael Boniface's avatar
Michael Boniface committed
    - echo $CI_PROJECT_DIR
    - cd ${CI_PROJECT_DIR}/src/test
    - python setup.py sdist --dist-dir=../../build
    - python setup.py sdist --dist-dir=../../build  
MJB's avatar
MJB committed
  artifacts:
    paths:
MJB's avatar
MJB committed
    - build/clmctest-SNAPSHOT.tar.gz
    - build/clmcservice-SNAPSHOT.tar.gz
MJB's avatar
MJB committed
    expire_in: 1 day
MJB's avatar
MJB committed
  dependencies: 
    - build:tests
Michael Boniface's avatar
Michael Boniface committed
  script:
    - echo "REPO_USER=${REPO_USER}" > $CI_PROJECT_DIR/reporc 
    - echo "REPO_PASS=${REPO_PASS}" >> $CI_PROJECT_DIR/reporc
Michael Boniface's avatar
Michael Boniface committed
    - sudo su
Michael Boniface's avatar
Michael Boniface committed
    - $CI_PROJECT_DIR/scripts/test/fixtures.sh create -f $CI_PROJECT_DIR/src/test/clmctest/rspec.json -r $CI_PROJECT_DIR
Michael Boniface's avatar
Michael Boniface committed
    - lxc-attach -n test-runner
Michael Boniface's avatar
Michael Boniface committed
    - cd src/test
Michael Boniface's avatar
Michael Boniface committed
    - python setup.py sdist --dist-dir=../../build
    - cd ../../src/service
    - python setup.py sdist --dist-dir=../../build
Michael Boniface's avatar
Michael Boniface committed
    - pip3 install $CI_PROJECT_DIR//build/clmctest-SNAPSHOT.tar.gz
    - pip3 install $CI_PROJECT_DIR/clmcservice-SNAPSHOT.tar.gz
Michael Boniface's avatar
Michael Boniface committed
    - pytest -s --pyargs clmctest.scripts
    - pytest -s --pyargs clmcservice.tests  
    - pytest -s --pyargs clmctest.inputs
    - pytest -s --pyargs clmctest.monitoring
MJB's avatar
MJB committed
  when: on_success      
Michael Boniface's avatar
Michael Boniface committed
    - sudo /vagrant/scripts/test/fixtures.sh destroy -f /vagrant/src/test/clmctest/rspec.json
  when: always