Skip to content

Commit

Permalink
ci(travis): build 3000.1 images
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Apr 1, 2020
1 parent d7bac6c commit baa313c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ env:
# DV: distro version
# PI: packages installer, used as dockerfile extension (deb, yum, pac, zyp)
# SIM: salt install method (git, stable)
# SV: salt version (master, 3000, 2019.2, 2018.3)
# SV: salt version (master, 3000.1, 2019.2, 2018.3)
# PV: python version (3, 2)
# EP: extra packages required for the specific build
jobs:
# AMAZONLINUX
- DN=amazonlinux DV=2 PI=yum SIM=git SV=master PV=3 EP="yum-utils python3-pip procps-ng"
- DN=amazonlinux DV=2 PI=yum SIM=stable SV=3000 PV=3 EP="yum-utils python3-pip procps-ng"
- DN=amazonlinux DV=2 PI=yum SIM=stable SV=3000.1 PV=3 EP="yum-utils python3-pip procps-ng"
- DN=amazonlinux DV=2 PI=yum SIM=stable SV=2019.2 PV=3 EP="yum-utils python3-pip procps-ng"
- DN=amazonlinux DV=1 PI=yum SIM=stable SV=2019.2 PV=2 EP="yum-utils python-pip procps-ng"
- DN=amazonlinux DV=1 PI=yum SIM=stable SV=2018.3 PV=2 EP="yum-utils python-pip procps-ng"
Expand All @@ -33,21 +33,21 @@ env:
# The Salt bootstrap installer does not provide packages nor installs with py3 for Arch
# so we're building only the git'ted py2 versions
- DN=archlinux/base DV=latest PI=pac SIM=git SV=master PV=2 EP="openssl openssh awk procps python2-pip"
- DN=archlinux/base DV=latest PI=pac SIM=git SV=3000 PV=2 EP="openssl openssh awk procps python2-pip"
- DN=archlinux/base DV=latest PI=pac SIM=git SV=3000.1 PV=2 EP="openssl openssh awk procps python2-pip"
- DN=archlinux/base DV=latest PI=pac SIM=git SV=2019.2 PV=2 EP="openssl openssh awk procps python2-pip"
- DN=archlinux/base DV=latest PI=pac SIM=git SV=2018.3 PV=2 EP="openssl openssh awk procps python2-pip"

# CENTOS
- DN=centos DV=8 PI=yum SIM=git SV=master PV=3 EP="python3 python3-pip python3-devel openssl-devel swig glibc-langpack-en"
- DN=centos DV=8 PI=yum SIM=stable SV=3000 PV=3 EP="python3 python3-pip python3-devel openssl-devel swig glibc-langpack-en"
- DN=centos DV=8 PI=yum SIM=stable SV=3000.1 PV=3 EP="python3 python3-pip python3-devel openssl-devel swig glibc-langpack-en"
- DN=centos DV=8 PI=yum SIM=stable SV=2019.2 PV=3 EP="python3 python3-pip python3-devel openssl-devel swig glibc-langpack-en"
- DN=centos DV=7 PI=yum SIM=stable SV=2019.2 PV=3 EP="python3 python3-pip python3-devel openssl-devel swig gcc-g++ zeromq zeromq-devel"
- DN=centos DV=7 PI=yum SIM=stable SV=2018.3 PV=3 EP="python3 python3-pip python3-devel openssl-devel swig gcc-g++ zeromq zeromq-devel"
- DN=centos DV=6 PI=yum SIM=stable SV=2018.3 PV=2 EP="python27-pip"

# DEBIAN
- DN=debian DV=10 PI=apt SIM=git SV=master PV=3 EP="python3-apt python3-pip"
- DN=debian DV=10 PI=apt SIM=stable SV=3000 PV=3 EP="python3-pip"
- DN=debian DV=10 PI=apt SIM=stable SV=3000.1 PV=3 EP="python3-pip"
- DN=debian DV=10 PI=apt SIM=stable SV=2019.2 PV=3 EP="python3-pip"
# There's no Py2 repo for debian10 so the bootstrap fails any attempt to install dependencies to
# install 2018.3 from git. Also, there's no 2018.3 repo in buster (neither py2 or py3), so trying
Expand All @@ -62,19 +62,19 @@ env:
# but they ship with Python3 since 29, so we install it using git
# https://bugzilla.redhat.com/show_bug.cgi?id=1723207
- DN=fedora DV=31 PI=dnf SIM=git SV=master PV=3 EP="python3-pip"
- DN=fedora DV=31 PI=dnf SIM=git SV=3000 PV=3 EP="python3-pip"
- DN=fedora DV=31 PI=dnf SIM=git SV=3000.1 PV=3 EP="python3-pip"
- DN=fedora DV=31 PI=dnf SIM=git SV=2019.2 PV=3 EP="python3-pip"
- DN=fedora DV=30 PI=dnf SIM=git SV=2018.3 PV=3 EP="python3-pip"

# OPENSUSE
- DN=opensuse/leap DV=15.1 PI=zyp SIM=git SV=master PV=3 EP="python3-pip"
- DN=opensuse/leap DV=15.1 PI=zyp SIM=git SV=3000 PV=3 EP="python3-pip"
- DN=opensuse/leap DV=15.1 PI=zyp SIM=git SV=3000.1 PV=3 EP="python3-pip"
- DN=opensuse/leap DV=15.1 PI=zyp SIM=git SV=2019.2 PV=3 EP="python3-pip"
- DN=opensuse/leap DV=15.1 PI=zyp SIM=git SV=2018.3 PV=2 EP="python2-pip"

# UBUNTU
- DN=ubuntu DV=18.04 PI=apt SIM=git SV=master PV=3 EP="python3-apt python3-pip"
- DN=ubuntu DV=18.04 PI=apt SIM=stable SV=3000 PV=3 EP="python3-pip"
- DN=ubuntu DV=18.04 PI=apt SIM=stable SV=3000.1 PV=3 EP="python3-pip"
- DN=ubuntu DV=18.04 PI=apt SIM=stable SV=2019.2 PV=3 EP="python3-pip"
- DN=ubuntu DV=18.04 PI=apt SIM=stable SV=2019.2 PV=2 EP="python-pip"
- DN=ubuntu DV=18.04 PI=apt SIM=stable SV=2018.3 PV=2 EP="python-pip"
Expand Down

0 comments on commit baa313c

Please sign in to comment.