Skip to content

Commit 02f31de

Browse files
committed
update
1 parent 114ea76 commit 02f31de

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

.github/workflows/build-wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: ["3.6", "3.7", "3.8", "3.9"]
2828
os: [ubuntu-latest, macos-latest]
2929
platform: [x64, x32]
30-
MB_ML_VER: [2010]
30+
MB_ML_VER: [1,2010,2014]
3131
exclude:
3232
- os: macos-latest
3333
platform: x32

config.sh

-22
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ function build_curl2 {
2828
build_openssl
2929
fi
3030
flags="$flags --without-brotli --without-nghttp2 --without-zstd --without-librtmp --without-libidn2"
31-
#build_libnghttp2
32-
#build_brotli
3331
fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz
3432
(cd curl-${CURL_VERSION} \
3533
&& if [ -z "$IS_MACOS" ]; then \
@@ -40,26 +38,6 @@ function build_curl2 {
4038
touch curl-stamp
4139
}
4240

43-
function build_libnghttp2 {
44-
if [ -e libnghttp2-stamp ]; then return; fi
45-
fetch_unpack https://github.com/nghttp2/nghttp2/releases/download/v${LIBNGHTTP2_VERSION}/nghttp2-${LIBNGHTTP2_VERSION}.tar.gz
46-
(cd nghttp2-${LIBNGHTTP2_VERSIONN} \
47-
&& ./configure --prefix=$BUILD_PREFIX --enable-shared \
48-
&& make \
49-
&& make install)
50-
touch libnghttp2-stamp
51-
}
52-
53-
function build_brotli {
54-
if [ -e brotli-stamp ]; then return; fi
55-
fetch_unpack https://github.com/google/brotli/archive/v${BROTLI_VERSION}/v${BROTLI_VERSION}.tar.gz
56-
(cd brotli-${BROTLI_VERSIONN} \
57-
&& ./configure-cmake --prefix=$BUILD_PREFIX --enable-shared \
58-
&& make \
59-
&& make install)
60-
touch brotli-stamp
61-
}
62-
6341
function build_libs {
6442
build_hdf5
6543
# use built-in curl on OSX

0 commit comments

Comments
 (0)