| 123456789101112131415161718192021222324252627 |
- stages:
- - test
- - deploy
- #variables:
- # CI_DEBUG_TRACE: "true"
- nose2_job:
- stage: test
- before_script:
- - pip67 install -r requirements.txt
- script:
- - nose2
-
- deploy_job:
- stage: deploy
- variables:
- DEPLOY_TO: \\BUILD-01\build\pardit
- script:
- - echo Deploy to %DEPLOY_TO%
- - copy /Y %cd%\VERSION.txt %DEPLOY_TO%
- - iscc /O%DEPLOY_TO% setup.iss
- # Attention: iscc.exe provoque un exit, il doit etre execute en dernier
- when: manual
- only:
- - master
|