forked from sociomantic-tsunami/git-hub
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (27 loc) · 770 Bytes
/
.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
# We will use docker to set up out environment, so don't use any particular
# language in Travis itself
language: generic
# Enable docker
sudo: required
services:
- docker
# Disable automatic submodule fetching (it's done recursively)
git:
submodules: false
# Do a shallow submodule fetch
before_install: git submodule update --init
env:
global:
# Make sure beaver is in the PATH
- PATH="$(git config -f .gitmodules submodule.beaver.path)/bin:$PATH"
matrix:
- DIST=xenial
- DIST=bionic
install: beaver install
script: beaver make PYTHON=python2.7 all deb
deploy:
provider: script
script: beaver bintray upload -d sociomantic-tsunami/tools/git-hub deb/*.deb
skip_cleanup: true
on:
tags: true