summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2018-05-03 08:23:54 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2018-05-03 09:07:00 +0200
commitb7bc2d54baa770e4784b189163b7eddfc68473b4 (patch)
tree69144b04ff98711e2a1b6e87ab9cc683a1162bf7
parent21f9e2b0f79b41037c7195898937f106a65340d9 (diff)
Add statically-linked version of bat, closes #46
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
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