summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 146a688673db008e18d6f8fa66a46731cb49f472 (plain) (tree)
1
2
3
4
5
6
7
8
9
       
      



        
                    

              
 


             
                       
       
 





                            


               
                      
       








            
       
                           
                  



             

                           
                  
stages:
- test
- deploy
- fail
- ok

image: debian:stable
before_script:
  - uname -a

testxml:
  stage: test
  script:
  - ./.tools/testxml.sh
  - pwd

contributors:
  stage: test
  script:
  - ./.tools/contributors.sh
  - pwd

pages:
  stage: deploy
  script:
  - ./.tools/deploy.sh
  - pwd
  artifacts:
    paths:
    - public
  only:
  - master
 
ok_job:
  stage: ok
  script:
  - pwd
  - echo $CI_BUILD_REF_NAME
  when: on_success

fail_job:
  stage: fail
  script:
  - pwd
  - echo $CI_BUILD_REF_NAME
  when: on_failure