From 4fcbd6700f7030c93361c76a03337e632227da75 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 3 May 2020 12:33:47 +0100 Subject: Add musl builds. --- .travis.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 5a205523..16a04a16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,15 +16,32 @@ env: - BUILD= - BUILD=static - BUILD=all + - BUILD=musl + - BUILD=musl-static jobs: exclude: + # Static builds are broken on OS X (by Apple) - os: osx compiler: gcc env: BUILD=static - os: osx compiler: clang env: BUILD=static + # No musl on OS X + - os: osx + compiler: gcc + env: BUILD=musl + - os: osx + compiler: clang + env: BUILD=musl + - os: osx + compiler: gcc + env: BUILD=musl-static + - os: osx + compiler: clang + env: BUILD=musl-static + # arm64 doesn't link ncurses - os: linux compiler: gcc arch: arm64 @@ -33,6 +50,22 @@ jobs: compiler: clang arch: arm64 env: BUILD=all + - os: linux + compiler: gcc + arch: arm64 + env: BUILD=musl + - os: linux + compiler: clang + arch: arm64 + env: BUILD=musl + - os: linux + compiler: gcc + arch: arm64 + env: BUILD=musl-static + - os: linux + compiler: clang + arch: arm64 + env: BUILD=musl-static before_install: - sh .github/travis/before-install.sh -- cgit v1.2.3