diff options
author | Emanuele Faranda <black.silver@hotmail.it> | 2020-02-14 10:32:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-14 10:32:31 +0000 |
commit | 03cf975c077c0c709e48430f7f08425f4435d02e (patch) | |
tree | da20b2f282ce2070779e1f5c1b9e188d2c2d3e23 | |
parent | 428661c00b061ad2b5d9cd5f0fb20a881ccec3f2 (diff) | |
parent | 582a01303f6a35652bfa4b627b2741c71aef56c0 (diff) |
Merge pull request #840 from xnox/more-tests
travis: bump to bionic, add arm64 & s390x.
-rw-r--r-- | .travis.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 057e93679..183c65743 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ matrix: - os: linux compiler: gcc + dist: bionic addons: apt: packages: @@ -15,6 +16,47 @@ matrix: - os: linux compiler: clang + dist: bionic + addons: + apt: + packages: + - libpcap-dev + - autogen + + - os: linux + compiler: gcc + dist: bionic + arch: arm64 + addons: + apt: + packages: + - libpcap-dev + - autogen + + - os: linux + compiler: clang + dist: bionic + arch: arm64 + addons: + apt: + packages: + - libpcap-dev + - autogen + + - os: linux + compiler: gcc + dist: bionic + arch: s390x + addons: + apt: + packages: + - libpcap-dev + - autogen + + - os: linux + compiler: clang + dist: bionic + arch: s390x addons: apt: packages: |