summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-10-25 23:56:28 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-10-25 23:56:28 +0300
commit5bb694c2618c88752fb13c6b0c15715b9ca487d9 (patch)
tree0de9a35304e546f7ae15b0081bef64fb64d24aab
parentaa4103f91052aa3ca8f73e39d205c62456aaaefd (diff)
downloadlibatomic_ops-5bb694c2618c88752fb13c6b0c15715b9ca487d9.tar.gz
Travis CI: Run distcheck on focal with automake-1.16.5
New tools version to prepare distributive tarball: * autoconf-2.69 * automake-1.16.5 (updated from 1.15) * m4-1.4.18 * libtool-2.4.6 (needed to build automake) Also, remove --no-check-certificate for downloads from ftp.gnu.org.
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index f785de7..e9173b9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -603,10 +603,10 @@ jobs:
- CROSS_GCC_VER=4.6.2
- NOLIBC_ARCH_ABI=tilegx-linux
- NOLIBC_DELIM=_
- - env:
+ - dist: focal
+ env:
- MAKEFILE_TARGET=distcheck
- - AUTOMAKE_VER=1.15
- - M4_VER=1.4.18
+ - AUTOMAKE_VER=1.16.5
- LIBTOOL_VER=2.4.6
before_install:
@@ -634,17 +634,17 @@ before_install:
fi
- if [[ "$M4_VER" != "" ]]; then
M4_XZ_URL=$GNU_DOWNLOAD_SITE/m4/m4-$M4_VER.tar.xz;
- wget --no-check-certificate -O - $M4_XZ_URL | tar xf - --xz --directory ~;
+ wget -O - $M4_XZ_URL | tar xf - --xz --directory ~;
(cd ~/m4-$M4_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j check && make install);
fi
- if [[ "$LIBTOOL_VER" != "" ]]; then
LIBTOOL_XZ_URL=$GNU_DOWNLOAD_SITE/libtool/libtool-$LIBTOOL_VER.tar.xz;
- wget --no-check-certificate -O - $LIBTOOL_XZ_URL | tar xf - --xz --directory ~;
+ wget -O - $LIBTOOL_XZ_URL | tar xf - --xz --directory ~;
(cd ~/libtool-$LIBTOOL_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
fi
- if [[ "$AUTOMAKE_VER" != "" ]]; then
AUTOMAKE_XZ_URL=$GNU_DOWNLOAD_SITE/automake/automake-$AUTOMAKE_VER.tar.xz;
- wget --no-check-certificate -O - $AUTOMAKE_XZ_URL | tar xf - --xz --directory ~;
+ wget -O - $AUTOMAKE_XZ_URL | tar xf - --xz --directory ~;
(cd ~/automake-$AUTOMAKE_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
fi
- if [[ "$MAKEFILE_TARGET" == "dist"* ]]; then