-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
41 lines (34 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
sudo: required
language: python
python:
- "3.6"
addons:
apt:
packages:
- python-pip
- python-dev
services:
- docker
before_install:
# Docker-CE Installation + git
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce git
# Related repositories
- git clone https://github.com/rh-messaging-qe/messaging_abstract.git
- git clone https://github.com/rh-messaging-qe/messaging_components.git
- git clone https://github.com/rh-messaging-qe/iqa_common.git
- git clone https://github.com/rh-messaging-qe/iqa_topologies.git
# Setup dependency
- cd messaging_abstract; python setup.py install; cd ..
- cd messaging_components; python setup.py install; cd ..
- cd iqa_common; python setup.py install; cd ..
jobs:
include:
- stage: IQA Test Suite
script:
# Deploy docker based test topology
- true
# Deploy components' containers to test
- true