gerardo commented on a change in pull request #3393: [AIRFLOW-2499] Dockerised
CI pipeline
URL: https://github.com/apache/incubator-airflow/pull/3393#discussion_r211230394
##########
File path: .travis.yml
##########
@@ -19,94 +19,40 @@
sudo: true
dist: trusty
language: python
-jdk:
- - oraclejdk8
-services:
- - cassandra
- - mongodb
- - mysql
- - postgresql
- - rabbitmq
-addons:
- apt:
- packages:
- - slapd
- - ldap-utils
- - openssh-server
- - mysql-server-5.6
- - mysql-client-core-5.6
- - mysql-client-5.6
- - krb5-user
- - krb5-kdc
- - krb5-admin-server
- - oracle-java8-installer
- postgresql: "9.2"
-python:
- - "2.7"
- - "3.5"
env:
global:
+ - DOCKER_COMPOSE_VERSION=1.20.0
- SLUGIFY_USES_TEXT_UNIDECODE=yes
- TRAVIS_CACHE=$HOME/.travis_cache/
- - KRB5_CONFIG=/etc/krb5.conf
- - KRB5_KTNAME=/etc/airflow.keytab
- # Travis on google cloud engine has a global /etc/boto.cfg that
- # does not work with python 3
- - BOTO_CONFIG=/tmp/bogusvalue
matrix:
+ - TOX_ENV=flake8
- TOX_ENV=py27-backend_mysql
- TOX_ENV=py27-backend_sqlite
- TOX_ENV=py27-backend_postgres
- - TOX_ENV=py35-backend_mysql
- - TOX_ENV=py35-backend_sqlite
- - TOX_ENV=py35-backend_postgres
- - TOX_ENV=flake8
+ - TOX_ENV=py35-backend_mysql PYTHON_VERSION=3
+ - TOX_ENV=py35-backend_sqlite PYTHON_VERSION=3
+ - TOX_ENV=py35-backend_postgres PYTHON_VERSION=3
- TOX_ENV=py27-backend_postgres KUBERNETES_VERSION=v1.9.0
- - TOX_ENV=py35-backend_postgres KUBERNETES_VERSION=v1.10.0
-matrix:
- exclude:
- - python: "3.5"
- env: TOX_ENV=py27-backend_mysql
- - python: "3.5"
- env: TOX_ENV=py27-backend_sqlite
- - python: "3.5"
- env: TOX_ENV=py27-backend_postgres
- - python: "2.7"
- env: TOX_ENV=py35-backend_mysql
- - python: "2.7"
- env: TOX_ENV=py35-backend_sqlite
- - python: "2.7"
- env: TOX_ENV=py35-backend_postgres
- - python: "2.7"
- env: TOX_ENV=flake8
- - python: "3.5"
- env: TOX_ENV=py27-backend_postgres KUBERNETES_VERSION=v1.9.0
- - python: "2.7"
- env: TOX_ENV=py35-backend_postgres KUBERNETES_VERSION=v1.10.0
+ - TOX_ENV=py35-backend_postgres KUBERNETES_VERSION=v1.10.0 PYTHON_VERSION=3
cache:
directories:
- $HOME/.wheelhouse/
+ - $HOME/.cache/pip
- $HOME/.travis_cache/
before_install:
- - yes | ssh-keygen -t rsa -C [email protected] -P '' -f ~/.ssh/id_rsa
- - cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
- - ln -s ~/.ssh/authorized_keys ~/.ssh/authorized_keys2
- - chmod 600 ~/.ssh/*
- - jdk_switcher use oraclejdk8
+ - sudo ls -lh $HOME/.cache/pip/
+ - sudo rm -rf $HOME/.cache/pip/* $HOME/.wheelhouse/*
+ - sudo chown -R travis.travis $HOME/.cache/pip
install:
+ # Use recent docker-compose version
+ - sudo rm /usr/local/bin/docker-compose
Review comment:
Ah yeah, docker-compose. There's a reason for this.
In earlier versions of this PR, the build logs were massive, because, by
default, docker-compose shows ascii progress bars when downloading docker
images. These progress bars don't render properly in TravisCI (it becomes like
100 lines per progress bar). The only way to disable this is to [set the
docker-compose log-level to
`ERROR`](https://github.com/apache/incubator-airflow/pull/3393/files#diff-354f30a63fb0907d4ad57269548329e3R55).
This change was only added in docker-compose
[1.20.0](https://github.com/docker/compose/blob/master/CHANGELOG.md#all-formats-1).
The TravisCI version is very old (1.4 if I remember correctly).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services