mirror of
https://github.com/planetmint/planetmint.git
synced 2025-06-03 04:36:40 +00:00
52 lines
957 B
YAML
52 lines
957 B
YAML
# Copyright © 2020, 2021 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
sudo: required
|
|
|
|
dist: focal
|
|
|
|
services:
|
|
- docker
|
|
|
|
language: python
|
|
cache: pip
|
|
|
|
python:
|
|
- 3.9
|
|
|
|
env:
|
|
global:
|
|
- DOCKER_COMPOSE_VERSION=1.29.2
|
|
matrix:
|
|
- TOXENV=flake8
|
|
- TOXENV=docsroot
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: 3.9
|
|
env:
|
|
- PLANETMINT_DATABASE_BACKEND=localmongodb
|
|
- PLANETMINT_DATABASE_SSL=
|
|
- python: 3.9
|
|
env:
|
|
- PLANETMINT_DATABASE_BACKEND=localmongodb
|
|
- PLANETMINT_DATABASE_SSL=
|
|
- PLANETMINT_CI_ABCI=enable
|
|
- python: 3.9
|
|
env:
|
|
- PLANETMINT_ACCEPTANCE_TEST=enable
|
|
|
|
|
|
before_install: sudo .ci/travis-before-install.sh
|
|
|
|
install: .ci/travis-install.sh
|
|
|
|
before_script: .ci/travis-before-script.sh
|
|
|
|
script: .ci/travis_script.sh
|
|
|
|
after_success: .ci/travis-after-success.sh
|