diff --git a/.travis.yml b/.travis.yml index da67f86..4d9b305 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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" @@ -33,13 +33,13 @@ 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" @@ -47,7 +47,7 @@ env: # 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 @@ -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"