From b7bc2d54baa770e4784b189163b7eddfc68473b4 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Thu, 3 May 2018 08:23:54 +0200 Subject: [PATCH] Add statically-linked version of bat, closes #46 --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.travis.yml b/.travis.yml index 76ce43c3..06ab0939 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,11 @@ matrix: - os: linux rust: stable env: TARGET=x86_64-unknown-linux-gnu + - os: linux + rust: stable + env: + - TARGET=x86_64-unknown-linux-musl + - CC_x86_64_unknown_linux_musl=/usr/bin/musl-gcc - os: osx rust: stable env: TARGET=x86_64-apple-darwin @@ -14,6 +19,11 @@ matrix: - os: linux rust: 1.24.0 env: TARGET=x86_64-unknown-linux-gnu + - os: linux + rust: 1.24.0 + env: + - TARGET=x86_64-unknown-linux-musl + - CC_x86_64_unknown_linux_musl=/usr/bin/musl-gcc - os: osx rust: 1.24.0 env: TARGET=x86_64-apple-darwin @@ -23,6 +33,8 @@ addons: packages: # needed for i686-unknown-linux-gnu target - gcc-multilib + # needed for musl targets + - musl-tools # needed to build deb packages - fakeroot