summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: fecf145e8e20d8711ecc616294e8eadcb155611b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
# 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