Skip to content

Commit

Permalink
Add 32bit support (#87)
Browse files Browse the repository at this point in the history
* Add 32bit support, closes #84
* Remove error-chain backtrace support
  • Loading branch information
sharkdp authored May 10, 2018
1 parent e2ac6de commit 6343535
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 36 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
32 changes: 0 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ version = "0.3.0"
atty = "0.2.2"
ansi_term = "0.10"
console = "0.6"
error-chain = "0.11"
directories = "0.10"
lazy_static = "1.0"

Expand All @@ -31,3 +30,8 @@ features = ["parsing", "yaml-load", "dump-load", "dump-create"]
version = "2"
default-features = false
features = ["suggestions", "color", "wrap_help"]

[dependencies.error-chain]
version = "0.11"
default-features = false
features = []

0 comments on commit 6343535

Please sign in to comment.