gatuno-terminal/.travis.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2020-04-06 18:04:04 -05:00
dist: bionic
language: shell
os: linux
2019-02-21 11:04:31 -06:00
services:
- docker
2020-04-06 18:04:04 -05:00
addons:
apt:
packages:
- python3-pip
- python3-setuptools
2019-02-21 11:04:31 -06:00
before_install:
- curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
2020-03-26 13:29:02 -06:00
- chmod +x docker-build
2019-02-21 11:04:31 -06:00
install:
- pip3 install PyGithub
- ./docker-build --name ${DISTRO} --config .build.yml --install
2019-02-21 11:04:31 -06:00
script:
- ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts
2019-02-21 11:04:31 -06:00
notifications:
irc:
if: (tag OR branch = "1.24") AND
repo = "mate-desktop/mate-terminal"
channels:
- "irc.freenode.org#mate-dev"
template:
- "[%{repository_name}] %{author}: %{commit_subject}"
- "[%{branch}] %{commit} %{message} %{build_url}"
on_success: never
on_failure: always
2019-04-04 09:44:53 -06:00
deploy:
- provider: script
2020-04-06 18:04:04 -05:00
edge: true
script: ./docker-build --verbose --config .build.yml --release github
2019-04-04 09:44:53 -06:00
on:
tags: true
condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$"
2019-02-21 11:04:31 -06:00
env:
2020-04-06 18:04:04 -05:00
- DISTRO="archlinux:latest"
- DISTRO="debian:testing"
2019-11-24 05:30:07 -06:00
- DISTRO="fedora:latest"
- DISTRO="ubuntu:20.04"