Skip to content

Commit

Permalink
The winning commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ruieduardolopes committed Jul 25, 2019
1 parent 0c55166 commit a65bbf0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ matrix:
include:
# Linux Systems.
- env: TARGET=mips-unknown-linux-gnu
- env: TARGET=mips-unknown-linux-musl
- env: TARGET=mips-unknown-linux-uclibc
rust: nightly
- env: TARGET=x86_64-unknown-linux-gnu

Expand Down
2 changes: 1 addition & 1 deletion deployments/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ main() {

export PATH="$(pwd)/OpenWrt-SDK-ar71xx-for-linux-x86_64-gcc-4.8-linaro_uClibc-0.9.33.2/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/bin:$PATH"

if [ $TARGET = mips-unknown-linux-musl ]; then
if [ $TARGET = mips-unknown-linux-uclibc ]; then
xargo build --target=mips-unknown-linux-uclibc --features mips --release --bin $CRATE_NAME

cp target/$TARGET/release/$CRATE_NAME $stage/
Expand Down
2 changes: 1 addition & 1 deletion deployments/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex

# TODO This is the "test phase", tweak it as you see fit
main() {
if [[ $TARGET = mips-unknown-linux-musl ]]; then
if [[ $TARGET = mips-unknown-linux-uclibc ]]; then
xargo build --target=mips-unknown-linux-uclibc --features mips --release --bin $CRATE_NAME
else
cross build --target $TARGET
Expand Down

0 comments on commit a65bbf0

Please sign in to comment.