summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Peter <sharkdp@users.noreply.github.com>2018-05-10 14:36:05 +0200
committerGitHub <noreply@github.com>2018-05-10 14:36:05 +0200
commit6343535eb2f23416431bb8e5a00e4fd734df78ba (patch)
tree3013f1f5a4aa18332b79dd5ccde86673e89cbf4a /.travis.yml
parente2ac6de7832c4de491e12e9c7d7c5725191cc2db (diff)
Add 32bit support (#87)
* Add 32bit support, closes #84 * Remove error-chain backtrace support
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index b3fb6cc4..b8b4b20d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,6 +11,9 @@ matrix:
env:
- TARGET=x86_64-unknown-linux-musl
- CC_x86_64_unknown_linux_musl=/usr/bin/musl-gcc
+ - os: linux
+ rust: stable
+ env: TARGET=i686-unknown-linux-gnu
- os: osx
rust: stable
env: TARGET=x86_64-apple-darwin
@@ -63,9 +66,7 @@ script:
- cargo build --target $TARGET --verbose
- cargo test --target $TARGET --verbose
# Run 'bat' on its own source code and the README
- # Piping to 'cat' forces the tty check to fail so that a pager is not used
- - cargo run --target $TARGET -- src/main.rs | cat
- - cargo run --target $TARGET -- README.md | cat
+ - cargo run --target $TARGET -- src/main.rs README.md --paging=never
before_deploy:
- bash ci/before_deploy.bash