File tree 2 files changed +1
-23
lines changed
2 files changed +1
-23
lines changed Original file line number Diff line number Diff line change 27
27
python-version : ["3.6", "3.7", "3.8", "3.9"]
28
28
os : [ubuntu-latest, macos-latest]
29
29
platform : [x64, x32]
30
- MB_ML_VER : [2010]
30
+ MB_ML_VER : [1, 2010,2014 ]
31
31
exclude :
32
32
- os : macos-latest
33
33
platform : x32
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ function build_curl2 {
28
28
build_openssl
29
29
fi
30
30
flags=" $flags --without-brotli --without-nghttp2 --without-zstd --without-librtmp --without-libidn2"
31
- # build_libnghttp2
32
- # build_brotli
33
31
fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION} .tar.gz
34
32
(cd curl-${CURL_VERSION} \
35
33
&& if [ -z " $IS_MACOS " ]; then \
@@ -40,26 +38,6 @@ function build_curl2 {
40
38
touch curl-stamp
41
39
}
42
40
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
-
63
41
function build_libs {
64
42
build_hdf5
65
43
# use built-in curl on OSX
You can’t perform that action at this time.
0 commit comments