gatuno-terminal/.travis.yml

34 lines
761 B
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-github
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:
- ./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
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"