Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1000 B
Newer Older
MJB's avatar
MJB committed
stages:  
MJB's avatar
MJB committed
  - build
Michael Boniface's avatar
Michael Boniface committed
  - test:scripts
MJB's avatar
MJB committed

build:
  - stage: build
  - python setup.py sdist --dist-dir=build  

Michael Boniface's avatar
Michael Boniface committed
test:scripts:
Michael Boniface's avatar
Michael Boniface committed
  stage: test:scripts
MJB's avatar
MJB committed
  script: 
Michael Boniface's avatar
Michael Boniface committed
    - vagrant --fixture=scripts -- up
    - vagrant --fixture=scripts -- ssh test-runner -- -tt "cd /vagrant && pytest clmctest/scripts/"
Michael Boniface's avatar
Michael Boniface committed
  after_script:
Michael Boniface's avatar
Michael Boniface committed
    - vagrant --fixture=scripts -- destroy --force
Michael Boniface's avatar
Michael Boniface committed
  when: on_success
Michael Boniface's avatar
Michael Boniface committed
  stage: test:monitoring
Michael Boniface's avatar
Michael Boniface committed
  script: 
    - vagrant --fixture=monitoring -- up
    - vagrant --fixture=monitoring -- ssh test-runner -- -tt "cd /vagrant && pytest clmctest/monitoring/"
Michael Boniface's avatar
Michael Boniface committed
  after_script:
    - vagrant --fixture=monitoring -- destroy --force   
Michael Boniface's avatar
Michael Boniface committed
  when: on_success  
Michael Boniface's avatar
Michael Boniface committed
  script: 
    - vagrant --fixture=inputs -- up
    - vagrant --fixture=inputs -- ssh test-runner -- -tt "cd /vagrant && pytest clmctest/inputs/"
Michael Boniface's avatar
Michael Boniface committed
  after_script:
    - vagrant --fixture=inputs -- destroy --force       
Michael Boniface's avatar
Michael Boniface committed
  when: on_success