From a4b3fdeb76c4296376bdb5d3fbbee997bd4917be Mon Sep 17 00:00:00 2001 From: Mo Zhou Date: Mon, 4 Jun 2018 09:15:00 +0000 Subject: [PATCH] travis: Add mips, mipsel, mips64el build. --- .travis.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.travis.yml b/.travis.yml index 19e6b11..3a900c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,5 +69,38 @@ matrix: - libc6-dev-ppc64el-cross - qemu-user-static - binfmt-support + + - os: linux + env: FLAGS="CC=mips-linux-gnu-gcc" TEST_FLAGS="LDFLAGS=-static" + addons: + apt: + sources: + - sourceline: "deb http://archive.ubuntu.com/ubuntu/ xenial main universe" + packages: + - gcc-mips-linux-gnu + - libc6-dev-mips-cross + - qemu-user-binfmt + + - os: linux + env: FLAGS="CC=mipsel-linux-gnu-gcc" TEST_FLAGS="LDFLAGS=-static" + addons: + apt: + sources: + - sourceline: "deb http://archive.ubuntu.com/ubuntu/ xenial main universe" + packages: + - gcc-mipsel-linux-gnu + - libc6-dev-mipsel-cross + - qemu-user-binfmt + + - os: linux + env: FLAGS="CC=mips64el-linux-gnuabi64-gcc" TEST_FLAGS="LDFLAGS=-static" + addons: + apt: + sources: + - sourceline: "deb http://archive.ubuntu.com/ubuntu/ xenial main universe" + packages: + - gcc-mips64el-linux-gnuabi64 + - libc6-dev-mips64el-cross + - qemu-user-binfmt notifications: email: false