This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 3 files changed +18
-11
lines changed
3 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -124,19 +124,10 @@ 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
133
- install_run $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
+ before_install
6
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Maybe get and clean and patch source
4
+ clean_code $REPO_DIR $BUILD_COMMIT
5
+ ./patch_code.sh $REPO_DIR
6
+ if [ " $TRAVIS_OS_NAME " == " linux" ]; then
7
+ export CFLAGS=${CFLAGS} " -Wno-sign-compare -Wno-unused-result\
8
+ -Wno-strict-aliasing" ;
9
+ fi
10
+ build_wheel $REPO_DIR $PLAT
You can’t perform that action at this time.
0 commit comments