We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6270c48 commit 5a5f622Copy full SHA for 5a5f622
1 file changed
oss_local_scripts/make_egg.sh
@@ -93,6 +93,9 @@ source ${WORKSPACE}/oss_local_scripts/python_env.sh $build_type
93
# Windows specific
94
archive_file_ext="tar.gz"
95
if [[ $OSTYPE == msys ]]; then
96
+ # C++ tests are default skipped on windows due to annoying issues around
97
+ # unable to find libstdc++.dll which are not so easily fixable
98
+ SKIP_CPP_TEST=1
99
archive_file_ext="zip"
100
unset PYTHONHOME
101
fi
@@ -112,6 +115,8 @@ build_source() {
112
115
make -j${NUM_PROCS}
113
116
114
117
if [[ -z $SKIP_CPP_TEST ]]; then
118
+ cd ${WORKSPACE}/oss_test
119
+ touch $(find . -name "*.cxx")
120
cd ${WORKSPACE}/${build_type}/oss_test
121
122
0 commit comments