-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extracted build and install+test steps into two different scripts and…
… fixed issues
- Loading branch information
Andrey Senyaev
committed
Jun 3, 2021
1 parent
2bab1f5
commit 83deed8
Showing
6 changed files
with
52 additions
and
88 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
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
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 | ||
|
||
set -e | ||
# Check out and prepare the source | ||
# Multibuild doesn't have releases, so --depth would break eventually (see | ||
# https://superuser.com/questions/1240216/server-does-not-allow-request-for-unadvertised) | ||
git submodule update --init multibuild | ||
source multibuild/common_utils.sh | ||
# https://github.com/matthew-brett/multibuild/issues/116 | ||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export ARCH_FLAGS=" "; fi | ||
source multibuild/travis_steps.sh | ||
# This sets -x | ||
# source travis_multibuild_customize.sh | ||
echo $ENABLE_CONTRIB > contrib.enabled | ||
echo $ENABLE_HEADLESS > headless.enabled | ||
set -x | ||
build_wheel $REPO_DIR $PLAT |
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,18 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
# Check out and prepare the source | ||
# Multibuild doesn't have releases, so --depth would break eventually (see | ||
# https://superuser.com/questions/1240216/server-does-not-allow-request-for-unadvertised) | ||
git submodule update --init --recursive | ||
source multibuild/common_utils.sh | ||
# https://github.com/matthew-brett/multibuild/issues/116 | ||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export ARCH_FLAGS=" "; fi | ||
source multibuild/travis_steps.sh | ||
# This sets -x | ||
# source travis_multibuild_customize.sh | ||
echo $ENABLE_CONTRIB > contrib.enabled | ||
echo $ENABLE_HEADLESS > headless.enabled | ||
set -x | ||
install_run $PLAT | ||
set +x |