forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
154 lines (154 loc) · 4.96 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
---
dist: bionic
language: python
os: linux
env:
global:
- BUILD_ID=${TRAVIS_BUILD_ID}
- MOUNT_LOCAL_SOURCES="false"
- MOUNT_HOST_AIRFLOW_VOLUME="true"
- FORCE_ANSWER_TO_QUESTIONS="yes"
- SKIP_CHECK_REMOTE_IMAGE="true"
- DB_RESET="true"
- VERBOSE="true"
- CI="true"
python: "3.6"
stages:
- pre-test
- test
services:
- docker
jobs:
include:
- name: "Static checks"
stage: pre-test
script: ./scripts/ci/ci_run_all_static_checks.sh
env: >-
PYTHON_MAJOR_MINOR_VERSION=3.6
AIRFLOW_MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true"
SKIP=pylint-tests
- name: "Static checks - pylint tests only"
stage: pre-test
script: ./scripts/ci/ci_run_static_checks_pylint_tests.sh
env: >-
PYTHON_MAJOR_MINOR_VERSION=3.6
AIRFLOW_MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true"
- name: "Build documentation"
env: >-
PYTHON_MAJOR_MINOR_VERSION=3.6
stage: test
script: ./scripts/ci/ci_docs.sh
- name: "Tests [Py3.6][Kubernetes][persistent]"
env: >-
BACKEND=postgres
PYTHON_MAJOR_MINOR_VERSION=3.6
RUNTIME=kubernetes
ENABLE_KIND_CLUSTER=true
KUBERNETES_MODE=persistent_mode
KUBERNETES_VERSION=v1.15.3
python: "3.6"
stage: test
- name: "Tests [Py3.7][Kubernetes][git]"
env: >-
BACKEND=postgres
PYTHON_MAJOR_MINOR_VERSION=3.7
RUNTIME=kubernetes
ENABLE_KIND_CLUSTER=true
KUBERNETES_MODE=git_mode
KUBERNETES_VERSION=v1.15.3
python: "3.6"
stage: test
- name: "Tests [Postgres9.6][Py3.6][integrations]"
env: >-
BACKEND=postgres
PYTHON_MAJOR_MINOR_VERSION=3.6
POSTGRES_VERSION=9.6
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
RUN_INTEGRATION_TESTS=all
stage: test
- name: "Tests [Postgres10][Py3.6][providers]"
env: >-
BACKEND=postgres
POSTGRES_VERSION=10
PYTHON_MAJOR_MINOR_VERSION=3.6
script: "./scripts/ci/ci_run_airflow_testing.sh tests/providers"
stage: test
- name: "Tests [Postgres9.6][Py3.6][core]"
env: >-
BACKEND=postgres
POSTGRES_VERSION=9.6
PYTHON_MAJOR_MINOR_VERSION=3.6
script: "./scripts/ci/ci_run_airflow_testing.sh --ignore=tests/providers"
stage: test
- name: "Tests [Sqlite][Py3.7][integrations]"
env: >-
BACKEND=sqlite
PYTHON_MAJOR_MINOR_VERSION=3.7
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
RUN_INTEGRATION_TESTS=all
stage: test
- name: "Tests [Sqlite][Py3.6]"
env: >-
BACKEND=sqlite
PYTHON_MAJOR_MINOR_VERSION=3.6
stage: test
- name: "Tests [MySQL5.7][Py3.6][integrations]"
env: >-
BACKEND=mysql
PYTHON_MAJOR_MINOR_VERSION=3.6
MYSQL_VERSION=5.7
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
RUN_INTEGRATION_TESTS=all
stage: test
- name: "Tests [MySQL5.7][Py3.7][providers][kerberos]"
env: >-
BACKEND=mysql
PYTHON_MAJOR_MINOR_VERSION=3.7
MYSQL_VERSION=5.7
ENABLED_INTEGRATIONS="kerberos"
script: "./scripts/ci/ci_run_airflow_testing.sh tests/providers"
stage: test
- name: "Tests [MySQL5.7][Py3.7][core][kerberos]"
env: >-
BACKEND=mysql
PYTHON_MAJOR_MINOR_VERSION=3.7
MYSQL_VERSION=5.7
ENABLED_INTEGRATIONS="kerberos"
script: "./scripts/ci/ci_run_airflow_testing.sh --ignore=tests/providers"
stage: test
- name: "Generate requirements Py3.6"
env: >-
PYTHON_MAJOR_MINOR_VERSION=3.6
stage: test
script: ./scripts/ci/ci_generate_requirements.sh
- name: "Generate requirements Py3.7"
env: >-
PYTHON_MAJOR_MINOR_VERSION=3.7
stage: test
script: ./scripts/ci/ci_generate_requirements.sh
- name: "Prepare & test backport packages 1.10.9"
env: >-
INSTALL_AIRFLOW_VERSION="1.10.9"
stage: test
script: ./scripts/ci/ci_prepare_and_test_backport_packages.sh
install: skip
before_install:
- ./scripts/ci/ci_before_install.sh
script: ./scripts/ci/ci_run_airflow_testing.sh