Fix linting issues
[kuberef.git] / .gitlab-ci.yml
1 ---
2 # GitLab CI config file to deploy RI2 on baremetal infra
3 # and run RC2 compliance tests on the deployed platform.
4 # TODO add tox jobs
5
6 stages:
7   - deploy_platform
8   - run_compliance_tests
9
10 deploy:
11   stage: deploy_platform
12   tags:
13     - ericsson-pod2
14   script:
15     - bash deploy.sh
16
17 runtestsuite:
18   extends: deploy
19   stage: run_compliance_tests
20   tags:
21     - ericsson-pod2
22   script:
23     - bash run_testsuite.sh
24   when: on_success