This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 4 files changed +26
-12
lines changed
4 files changed +26
-12
lines changed Original file line number Diff line number Diff line change @@ -124,22 +124,13 @@ before_install:
124
124
fi
125
125
# Set DEBUG_PRINT environment variable in settings
126
126
- if [ -n "${DEBUG_PRINT}" ]; then set -x; fi
127
- - source multibuild/common_utils.sh
128
- - source multibuild/travis_steps.sh
129
- - before_install
127
+ - ./travis_before_install.sh
130
128
131
129
install :
132
- # Maybe get and clean and patch source
133
- - clean_code $REPO_DIR $BUILD_COMMIT
134
- - ./patch_code.sh $REPO_DIR
135
- - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
136
- export CFLAGS=${CFLAGS}" -Wno-sign-compare -Wno-unused-result\
137
- -Wno-strict-aliasing";
138
- fi
139
- - build_wheel $REPO_DIR $PLAT
130
+ - ./travis_install.sh
140
131
141
132
script :
142
- - install_run $PLAT
133
+ - ./travis_script.sh
143
134
144
135
after_success :
145
136
# Upload wheels to Rackspace container
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ source multibuild/common_utils.sh
4
+ source multibuild/travis_steps.sh
5
+ before_install
6
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ source multibuild/common_utils.sh
4
+ source multibuild/travis_steps.sh
5
+ # Maybe get and clean and patch source
6
+ clean_code $REPO_DIR $BUILD_COMMIT
7
+ ./patch_code.sh $REPO_DIR
8
+ if [ " $TRAVIS_OS_NAME " == " linux" ]; then
9
+ export CFLAGS=${CFLAGS} " -Wno-sign-compare -Wno-unused-result\
10
+ -Wno-strict-aliasing" ;
11
+ fi
12
+ build_wheel $REPO_DIR $PLAT
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ source multibuild/common_utils.sh
4
+ source multibuild/travis_steps.sh
5
+ install_run $PLAT
You can’t perform that action at this time.
0 commit comments