forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (52 loc) · 1.91 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
# WARNING: DO NOT EDIT!
#
# This file was generated by plugin_template, and is managed by bootstrap.py. Please use
# bootstrap.py to update this file.
#
# For more info visit https://github.com/pulp/plugin_template
---
sudo: required
# https://docs.travis-ci.com/user/trusty-ci-environment/
dist: bionic
language: python
python:
# Fedora has 3.6 available (python36.x86_64), but pulp container images
# with it are not being built or published yet.
# - "3.6"
- "3.7"
env:
matrix:
- TEST=pulp
services:
- postgresql
- redis-server
- docker
addons:
apt:
packages:
- httpie
- jq
# postgres versions provided by el7 RHSCL (lowest supportable version)
postgresql: '9.6'
jobs:
include:
- stage: test and deploy
before_install: .travis/before_install.sh
install: .travis/install.sh
before_script: .travis/before_script.sh
script: .travis/script.sh
after_failure:
- http --timeout 30 --check-status --pretty format --print hb http://pulp/pulp/api/v3/status/
- docker images
- docker ps -a
- docker logs pulp
deploy:
provider: pypi
distributions: "bdist_wheel"
user: "__token__"
skip_cleanup: true
password:
secure: "mNDI7pqihv+NGCbjb5vKepCp4x+fPjRboQmx1+utaPBgKtofY3Cy7KRSnIcDb5t621+Yb2ufRXk9JGliihHFUUzxVMQjxtIrT8CgbsyXYGFqCQTLp0juCShcU3uCrmn0OB5FZfv1TPmbqrD2iOq1RKx6P6kGEa06ysTelADBi39gdk6l6qfC0o8XBu407KnpOOkx6dR6FjoTmwjN4XsM/UukvBEpAPvgv9eSOJDWR/sEDjpCE2ZMLPSqqM6b01RdkzLOWcDwH56/wXW5IQ3QK4GR63tXcGk6FHw2nfgi1izJhzQWmGD1fpReyxR8EucMOSYzCQSflLiyLCEF/uwnWnFqVDufnElTBCnqMko1qwcoAHwR8fp3xM0WQvGc4krIQjDvKdPpI7vqMrHxX2ZoUG5bDgZEUoYtxlNPBQ8R5GLuupgkLgfh/bORvIxQvmBm8MVGxwO1Ze++9TwTCsxTOTKKEBu3AOtqfdY+IyvYeDPP/Zw37IvGckNGOIyT3KwYgU+L+JGuEHpHkfCBx2oE3NyPN9YAm/6da1ZR1iSeGd980ux0yTGwF8sL4vhUp4lCTsWBqZseztYCsc+QFDUiKMHMQVbftXIwDbtA10SVZlaCrpNHoXNDtWLRo28kqoHFty4+Lzqughqxu27Wf2Eh9MUx9fUcAJA3a/REYyrZjz8="
on:
tags: true
...