blob: e502b351c077a585bf36904ecb4fa280f65fff20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# GitLab CI config file to deploy RI2 on baremetal infra
# and run RC2 compliance tests on the deployed platform.
# TODO add tox jobs
stages:
- deploy_platform
- run_compliance_tests
deploy:
stage: deploy_platform
tags:
- ericsson-pod2
script:
- bash deploy.sh
runtestsuite:
extends: deploy
stage: run_compliance_tests
tags:
- ericsson-pod2
script:
- bash run_testsuite.sh
when: on_success
|