This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/.travis.yml

50 lines
806 B
YAML
Raw Normal View History

2018-05-04 18:03:18 +00:00
---
language: python
sudo: required
services:
- docker
install: true
# Stop default database instances here to avoid port conflicts.
before_script:
- sudo service mysql stop
- sudo service postgresql stop
cache:
directories:
- $HOME/docker
stages:
- build
- test
- database
- clean
# We should label the steps if Travis ever supports it:
# https://github.com/travis-ci/travis-ci/issues/5898
jobs:
include:
- stage: build
script: scripts/ci build
- stage: test
script: scripts/ci unit
- stage: test
script: scripts/ci registry
- stage: test
script: scripts/ci registry_old
- stage: database
script: scripts/ci mysql
- stage: database
script: scripts/ci postgres
- stage: clean
script: scripts/ci clean