forked from epoch8/airflow-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (25 loc) · 776 Bytes
/
.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
dist: xenial
language: minimal
sudo: false
services:
- docker
matrix:
include:
- name: Airflow 1.10.3
env:
- AIRFLOW_VERSION=1.10.3
- name: Airflow 1.10.3 with RBAC
env:
- AIRFLOW_VERSION=1.10.3
- AIRFLOW__WEBSERVER__RBAC=true
script:
- docker-compose -f docker-compose.test.yml build --build-arg "AIRFLOW_VERSION=${AIRFLOW_VERSION}"
# Start the tests container (sut) and attach airflow stdout as well
- docker-compose -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from=sut sut airflow
# deploy:
# provider: pypi
# user: epoch8
# password: # TODO: Add epoch8's PyPI password. See https://docs.travis-ci.com/user/deployment/pypi
# distributions: sdist bdist_wheel
# on:
# tags: true