Travis: Update build env to Ubuntu Focal

1/ Update to Focal environment
2/ Make build stop on first error
3/ Remove unnecessary PPAs
This commit is contained in:
Andrew Bird 2020-10-14 12:12:32 +01:00 committed by Kenneth J Davis
parent a7b7ce71d0
commit 6e42bb6d7c
2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,10 @@
language: c language: c
dist: bionic dist: focal
addons: addons:
apt: apt:
sources: sources:
- sourceline: 'ppa:dosemu2/ppa'
- sourceline: 'ppa:stsp-0/djgpp'
- sourceline: 'ppa:tkchia/build-ia16' - sourceline: 'ppa:tkchia/build-ia16'
packages: packages:
- gcc-ia16-elf - gcc-ia16-elf

View File

@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
set -e
if [ -z "${TRAVIS_BUILD_DIR}" ] ; then if [ -z "${TRAVIS_BUILD_DIR}" ] ; then
TRAVIS_BUILD_DIR=$(pwd) TRAVIS_BUILD_DIR=$(pwd)
fi fi