File tree 1 file changed +23
-2
lines changed
1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,36 @@ jobs:
30
30
if : matrix.os == 'macos-13'
31
31
run : |
32
32
HOMEBREW_NO_AUTO_UPDATE=1 brew install cmake
33
- HOMEBREW_NO_AUTO_UPDATE=1 brew install zlib
34
33
wget https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz
35
34
tar xf gmp-6.3.0.tar.xz
36
35
cd gmp-6.3.0
37
36
./configure --enable-static -enable-cxx --enable-shared
38
37
make -j8
39
38
sudo make install
40
39
cd ..
41
-
40
+
41
+ - name : Install zlib for Mac dynamic
42
+ if : matrix.os == 'macos-14' && matrix.staticcompile == 'OFF'
43
+ run : |
44
+ wget https://www.zlib.net/zlib-1.3.1.tar.gz
45
+ tar xzvf zlib-1.3.1.tar.gz
46
+ cd zlib-1.3.1
47
+ ./configure
48
+ make -j8
49
+ sudo make install
50
+ cd ..
51
+
52
+ - name : Install zlib for Mac static
53
+ if : matrix.os == 'macos-14' && matrix.staticcompile == 'ON'
54
+ run : |
55
+ wget https://www.zlib.net/zlib-1.3.1.tar.gz
56
+ tar xzvf zlib-1.3.1.tar.gz
57
+ cd zlib-1.3.1
58
+ ./configure --static
59
+ make -j8
60
+ sudo make install
61
+ cd ..
62
+
42
63
- name : Installing Numpy
43
64
run : |
44
65
pip install pip --upgrade
You can’t perform that action at this time.
0 commit comments