-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
20 lines (20 loc) · 946 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
dist: xenial
language: python
python: 3.7
services: docker
env:
- OS_VERSION=bionic GIT_URL=https://github.com/ceph/ceph GIT_REF=octopus IMG="popperized/ceph-builder:octopus-bionic"
- OS_VERSION=bionic GIT_URL=https://github.com/ceph/ceph GIT_REF=nautilus IMG="popperized/ceph-builder:nautilus-bionic"
- OS_VERSION=bionic GIT_URL=https://github.com/ceph/ceph GIT_REF=mimic IMG="popperized/ceph-builder:mimic-bionic"
- OS_VERSION=bionic GIT_URL=https://github.com/uccross/skyhook-ceph GIT_REF=skyhook-luminous IMG="popperized/ceph-builder:skyhook-bionic"
install:
- git clone https://github.com/systemslab/popper /tmp/popper
- export PYTHONUNBUFFERED=1
- pip install /tmp/popper/cli
script: >-
popper run -f ci/wf.yml \
--substitution "_OS_VERSION=$OS_VERSION" \
--substitution "_GIT_URL=$GIT_URL" \
--substitution "_GIT_REF=$GIT_REF" \
--substitution "_IMG=$IMG"