This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (1) ci fixes for tests, wheel * update travis env * (2) ci fixes for tests, wheel * last test for docs * okay, final version Co-authored-by: Raman Prasad <[email protected]>
- Loading branch information
Showing
6 changed files
with
57 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# run from within the manylinux docker containers | ||
|
||
# exit immediately upon failure, print commands while running | ||
set -e -x | ||
|
||
# Install rust inside the manylinux container | ||
# | ||
echo ">>> install rust if it does not exist"; | ||
if ! [ -x "$(command -v cargo)" ]; then | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal | ||
export PATH="${HOME}/.cargo/bin:${PATH}" | ||
fi | ||
|
||
echo ">>> build the binaries"; | ||
cargo build --manifest-path=whitenoise-core/Cargo.toml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.