2018-04-14 10:13:23 +03:00
|
|
|
# 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
|
[AIRFLOW-2335] fix issue with jdk8 download for ci
Make sure you have checked _all_ steps below.
- [x] My PR addresses the following [Airflow JIRA]
(https://issues.apache.org/jira/browse/AIRFLOW/)
issues and references them in the PR title. For
example, "\[AIRFLOW-XXX\] My Airflow PR"
-
https://issues.apache.org/jira/browse/AIRFLOW-2335
- In case you are fixing a typo in the
documentation you can prepend your commit with
\[AIRFLOW-XXX\], code changes always need a JIRA
issue.
- [x] Here are some details about my PR, including
screenshots of any UI changes:
There is an issue with travis pulling jdk8 that is
preventing CI jobs from running. This blocks
further development of the project.
Reference: https://github.com/travis-ci/travis-
ci/issues/9512#issuecomment-382235301
- [x] My PR adds the following unit tests __OR__
does not need testing for this extremely good
reason:
This PR can't be unit tested since it is just
configuration. However, the fact that unit tests
run successfully should show that it works.
- [ ] My commits all reference JIRA issues in
their subject lines, and I have squashed multiple
commits if they address the same issue. In
addition, my commits follow the guidelines from
"[How to write a good git commit
message](http://chris.beams.io/posts/git-
commit/)":
1. Subject is separated from body by a blank line
2. Subject is limited to 50 characters
3. Subject does not end with a period
4. Subject uses the imperative mood ("add", not
"adding")
5. Body wraps at 72 characters
6. Body explains "what" and "why", not "how"
- [ ] In case of new functionality, my PR adds
documentation that describes how to use it.
- When adding new operators/hooks/sensors, the
autoclass documentation generation needs to be
added.
- [ ] Passes `git diff upstream/master -u --
"*.py" | flake8 --diff`
Closes #3236 from dimberman/AIRFLOW-
2335_travis_issue
2018-04-18 07:57:14 +03:00
|
|
|
#
|
2018-04-14 10:13:23 +03:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
[AIRFLOW-2335] fix issue with jdk8 download for ci
Make sure you have checked _all_ steps below.
- [x] My PR addresses the following [Airflow JIRA]
(https://issues.apache.org/jira/browse/AIRFLOW/)
issues and references them in the PR title. For
example, "\[AIRFLOW-XXX\] My Airflow PR"
-
https://issues.apache.org/jira/browse/AIRFLOW-2335
- In case you are fixing a typo in the
documentation you can prepend your commit with
\[AIRFLOW-XXX\], code changes always need a JIRA
issue.
- [x] Here are some details about my PR, including
screenshots of any UI changes:
There is an issue with travis pulling jdk8 that is
preventing CI jobs from running. This blocks
further development of the project.
Reference: https://github.com/travis-ci/travis-
ci/issues/9512#issuecomment-382235301
- [x] My PR adds the following unit tests __OR__
does not need testing for this extremely good
reason:
This PR can't be unit tested since it is just
configuration. However, the fact that unit tests
run successfully should show that it works.
- [ ] My commits all reference JIRA issues in
their subject lines, and I have squashed multiple
commits if they address the same issue. In
addition, my commits follow the guidelines from
"[How to write a good git commit
message](http://chris.beams.io/posts/git-
commit/)":
1. Subject is separated from body by a blank line
2. Subject is limited to 50 characters
3. Subject does not end with a period
4. Subject uses the imperative mood ("add", not
"adding")
5. Body wraps at 72 characters
6. Body explains "what" and "why", not "how"
- [ ] In case of new functionality, my PR adds
documentation that describes how to use it.
- When adding new operators/hooks/sensors, the
autoclass documentation generation needs to be
added.
- [ ] Passes `git diff upstream/master -u --
"*.py" | flake8 --diff`
Closes #3236 from dimberman/AIRFLOW-
2335_travis_issue
2018-04-18 07:57:14 +03:00
|
|
|
#
|
2018-04-14 10:13:23 +03:00
|
|
|
# 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.
|
2016-12-05 17:23:02 +03:00
|
|
|
#
|
2019-08-22 17:13:56 +03:00
|
|
|
---
|
2019-11-18 02:05:13 +03:00
|
|
|
dist: bionic
|
2015-10-06 16:03:16 +03:00
|
|
|
language: python
|
2020-02-19 19:10:46 +03:00
|
|
|
os: linux
|
2015-10-06 16:43:44 +03:00
|
|
|
env:
|
2015-10-28 14:09:56 +03:00
|
|
|
global:
|
2019-07-17 23:42:43 +03:00
|
|
|
- BUILD_ID=${TRAVIS_BUILD_ID}
|
2019-10-25 11:34:39 +03:00
|
|
|
- MOUNT_LOCAL_SOURCES="false"
|
2020-02-19 03:58:53 +03:00
|
|
|
- MOUNT_HOST_AIRFLOW_VOLUME="true"
|
2019-09-18 14:43:30 +03:00
|
|
|
- FORCE_ANSWER_TO_QUESTIONS="yes"
|
2020-03-12 11:48:24 +03:00
|
|
|
- SKIP_CHECK_REMOTE_IMAGE="true"
|
2020-02-25 00:31:50 +03:00
|
|
|
- VERBOSE="true"
|
2019-07-29 16:27:42 +03:00
|
|
|
- CI="true"
|
2019-07-23 06:46:12 +03:00
|
|
|
python: "3.6"
|
2019-01-11 09:36:00 +03:00
|
|
|
stages:
|
2019-01-13 05:24:50 +03:00
|
|
|
- pre-test
|
2019-01-11 09:36:00 +03:00
|
|
|
- test
|
2020-02-19 19:10:46 +03:00
|
|
|
services:
|
|
|
|
- docker
|
2019-01-11 09:36:00 +03:00
|
|
|
jobs:
|
|
|
|
include:
|
2019-11-06 12:31:20 +03:00
|
|
|
- name: "Static checks"
|
2019-01-13 05:24:50 +03:00
|
|
|
stage: pre-test
|
2020-01-25 17:06:27 +03:00
|
|
|
script: ./scripts/ci/ci_run_all_static_checks.sh
|
|
|
|
env: >-
|
|
|
|
PYTHON_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
|
2019-11-18 02:05:13 +03:00
|
|
|
env: >-
|
|
|
|
PYTHON_VERSION=3.6
|
2020-01-11 18:25:19 +03:00
|
|
|
AIRFLOW_MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true"
|
2019-08-23 23:19:27 +03:00
|
|
|
- name: "Build documentation"
|
2019-11-18 02:05:13 +03:00
|
|
|
env: >-
|
|
|
|
PYTHON_VERSION=3.6
|
2020-01-19 03:22:05 +03:00
|
|
|
stage: test
|
2019-08-23 23:19:27 +03:00
|
|
|
script: ./scripts/ci/ci_docs.sh
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Py3.6][Kubernetes][persistent]"
|
2020-01-11 18:25:19 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=postgres
|
|
|
|
PYTHON_VERSION=3.6
|
2020-01-13 22:47:37 +03:00
|
|
|
RUNTIME=kubernetes
|
2020-01-11 18:25:19 +03:00
|
|
|
ENABLE_KIND_CLUSTER=true
|
|
|
|
KUBERNETES_MODE=persistent_mode
|
|
|
|
KUBERNETES_VERSION=v1.15.3
|
|
|
|
python: "3.6"
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Py3.7][Kubernetes][git]"
|
2020-01-11 18:25:19 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=postgres
|
2020-01-13 22:47:37 +03:00
|
|
|
PYTHON_VERSION=3.7
|
|
|
|
RUNTIME=kubernetes
|
2020-01-11 18:25:19 +03:00
|
|
|
ENABLE_KIND_CLUSTER=true
|
|
|
|
KUBERNETES_MODE=git_mode
|
|
|
|
KUBERNETES_VERSION=v1.15.3
|
|
|
|
python: "3.6"
|
|
|
|
stage: test
|
2020-03-16 10:32:07 +03:00
|
|
|
- name: "Tests [Postgres9.6][Py3.6][integrations]"
|
2020-01-13 22:47:37 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=postgres
|
|
|
|
PYTHON_VERSION=3.6
|
2020-03-15 01:57:47 +03:00
|
|
|
POSTGRES_VERSION=9.6
|
2020-01-13 22:47:37 +03:00
|
|
|
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
|
|
|
|
RUN_INTEGRATION_TESTS=all
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Postgres10][Py3.6][providers]"
|
2019-10-25 10:56:08 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=postgres
|
2020-03-15 01:57:47 +03:00
|
|
|
POSTGRES_VERSION=10
|
2019-10-25 10:56:08 +03:00
|
|
|
PYTHON_VERSION=3.6
|
2020-03-08 19:07:15 +03:00
|
|
|
script: "./scripts/ci/ci_run_airflow_testing.sh tests/providers"
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Postgres9.6][Py3.6][core]"
|
2020-03-08 19:07:15 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=postgres
|
2020-03-15 01:57:47 +03:00
|
|
|
POSTGRES_VERSION=9.6
|
2020-03-08 19:07:15 +03:00
|
|
|
PYTHON_VERSION=3.6
|
|
|
|
script: "./scripts/ci/ci_run_airflow_testing.sh --ignore=tests/providers"
|
2019-10-19 22:40:59 +03:00
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Sqlite][Py3.7][integrations]"
|
2020-01-13 22:47:37 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=sqlite
|
|
|
|
PYTHON_VERSION=3.7
|
|
|
|
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
|
|
|
|
RUN_INTEGRATION_TESTS=all
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [Sqlite][Py3.6]"
|
2020-01-13 22:47:37 +03:00
|
|
|
env: >-
|
2019-10-25 10:56:08 +03:00
|
|
|
BACKEND=sqlite
|
2019-11-18 02:05:13 +03:00
|
|
|
PYTHON_VERSION=3.6
|
2019-10-19 22:40:59 +03:00
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [MySQL5.7][Py3.6][integrations]"
|
2020-01-13 22:47:37 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=mysql
|
|
|
|
PYTHON_VERSION=3.6
|
2020-03-15 01:57:47 +03:00
|
|
|
MYSQL_VERSION=5.7
|
2020-01-13 22:47:37 +03:00
|
|
|
ENABLED_INTEGRATIONS="cassandra kerberos mongo openldap rabbitmq redis"
|
|
|
|
RUN_INTEGRATION_TESTS=all
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [MySQL5.7][3.7][providers][kerberos]"
|
2020-03-08 19:07:15 +03:00
|
|
|
env: >-
|
|
|
|
BACKEND=mysql
|
|
|
|
PYTHON_VERSION=3.7
|
2020-03-15 01:57:47 +03:00
|
|
|
MYSQL_VERSION=5.7
|
2020-03-08 19:07:15 +03:00
|
|
|
ENABLED_INTEGRATIONS="kerberos"
|
|
|
|
script: "./scripts/ci/ci_run_airflow_testing.sh tests/providers"
|
|
|
|
stage: test
|
2020-03-15 01:57:47 +03:00
|
|
|
- name: "Tests [MySQL5.7][Py3.7][core][kerberos]"
|
2020-01-13 22:47:37 +03:00
|
|
|
env: >-
|
2019-10-25 10:56:08 +03:00
|
|
|
BACKEND=mysql
|
|
|
|
PYTHON_VERSION=3.7
|
2020-03-15 01:57:47 +03:00
|
|
|
MYSQL_VERSION=5.7
|
2020-01-26 18:15:55 +03:00
|
|
|
ENABLED_INTEGRATIONS="kerberos"
|
2020-03-08 19:07:15 +03:00
|
|
|
script: "./scripts/ci/ci_run_airflow_testing.sh --ignore=tests/providers"
|
2019-10-19 22:40:59 +03:00
|
|
|
stage: test
|
2020-02-25 11:27:11 +03:00
|
|
|
- name: "Prepare backport packages"
|
2020-03-10 16:05:08 +03:00
|
|
|
before_install: pip install bowler
|
2020-03-02 02:24:00 +03:00
|
|
|
stage: test
|
2020-02-25 11:27:11 +03:00
|
|
|
script: ./scripts/ci/ci_prepare_backport_packages.sh
|
2015-11-28 11:37:33 +03:00
|
|
|
before_install:
|
2019-07-17 23:42:43 +03:00
|
|
|
- ./scripts/ci/ci_before_install.sh
|
2020-01-11 18:25:19 +03:00
|
|
|
script: ./scripts/ci/ci_run_airflow_testing.sh
|