Switch Travis testing from Xenial to Bionic

master
David Allsopp 2020-04-23 15:58:36 +01:00
parent 2a50fef1ae
commit c6048eb406
2 changed files with 5 additions and 9 deletions

View File

@ -13,7 +13,7 @@
#* * #* *
#************************************************************************** #**************************************************************************
dist: xenial dist: bionic
language: c language: c
git: git:
submodules: false submodules: false
@ -25,12 +25,7 @@ matrix:
addons: addons:
apt: apt:
packages: packages:
- gcc:i386 - gcc-multilib
- cpp:i386
- binutils:i386
- binutils-dev:i386
- libx11-dev:i386
- libc6-dev:i386
- env: CI_KIND=build XARCH=x64 - env: CI_KIND=build XARCH=x64
addons: addons:
apt: apt:

View File

@ -119,8 +119,9 @@ EOF
./configure $configure_flags ./configure $configure_flags
;; ;;
i386) i386)
./configure --build=x86_64-pc-linux-gnu --host=i386-pc-linux-gnu \ ./configure --build=x86_64-pc-linux-gnu --host=i386-linux \
AS='as' ASPP='gcc -c' \ CC='gcc -m32' AS='as --32' ASPP='gcc -m32 -c' \
PARTIALLD='ld -r -melf_i386' \
$configure_flags $configure_flags
;; ;;
*) *)