Skip to content

Commit

Permalink
Try to swoop up everything from the build result.
Browse files Browse the repository at this point in the history
  • Loading branch information
bascht committed Jul 21, 2017
1 parent c58b4fd commit a938927
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ sudo: required
services:
- docker
script:
- mkdir binaries
- cargo install cross
- cross build --release --target=x86_64-unknown-linux-musl
- mv target/*/release/binichonline binaries/binichonline-linux
- rm -rf target/*
- cross build --release --target=x86_64-pc-windows-gnu
- mv target/x86_64-pc-windows-gnu/release/binichonline target/x86_64-pc-windows-gnu/release/binichonline.exe
- mv target/*/release/binichonline binaries/binichonline.exe
matrix:
allow_failures:
- rust: beta
Expand All @@ -18,10 +21,8 @@ deploy:
skip_cleanup: true
api_key:
secure: xDt7To/pv4kz7nBiRBj/tC9kb0lzkdHHxgIYz4zCSBbI8HAgi+UpAZab1YSASLZUkREfBE7bKKeB7DPBNV66H/zT/OXfivayJkZhfl9dKGMI4r2StL+grycIWYS4unzC6ZEDQPKgEtjp541TMoRU4am0IIIlugK3L8Tc1DByVz37SY8+JbLsDXcaNTZgIutYkS10D0Ebdn/wj5H5iM7MZLvq3L0JPVR1J5bO8nloTRKXsDCCFc586qrX4twj8SkYCDm1wpPFrk86qa3BqQ8U4PyFFsufC5babCLAc2eV1hd+LVB/8GScWkLKHBakThMAaefBLj188rMvxKzSAe61SO/LJYIc7YxgdzNnLKH9+wdm2Mf4Z0588EbsU5r66EULuALF/rU7GP4gfUWCsZdJmWOaeJxF23pFXu3Zi2nqd9kA7sEhVKMdHQf2ep8IDcKardiiQ8W+kCuQHhEs1pBjDxzy+iP0A5x2csPzadZoZBYnTvRbD9Jzgtjv9vMKh6nXKo50TCZ9Yc/zy3uWTAdqxxIZhXD8l7eGljEdHCffbXJDUeNfhCGwwgp9zngbp0z3kpsnw/TPJ1CY8IopE5oyiGdmNqz7hDlUtm9fon+PHBt5PlOhfe9e2mSHWEH17mSnHRq2OmVRrfpmrpD3j+usC6x9ztg0rsjf3yOfEcTiKoE=
file:
- target/x86_64-unknown-linux-musl/release/binichonline
- target/x86_64-pc-windows-gnu/release/binichonline.exe
file: "binaries/*"
on:
repo: bascht/binichonline
tags: true
rust: stable
rust: stable
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "binichonline"
version = "0.3.1"
version = "0.3.3"
authors = ["Sebastian Schulze <[email protected]>"]

[dependencies]
Expand All @@ -11,4 +11,4 @@ url = "1.5.1"

[[bin]]
name = "binichonline"
doc = false
doc = false

0 comments on commit a938927

Please sign in to comment.