@@ -15,10 +15,10 @@ jobs:
15
15
CACHE_SAS : ${{ secrets.CACHE_SAS }}
16
16
run : |
17
17
cd ..
18
- export "file_name=NP_mac-arm-${{ hashFiles('build.mac.sh') }}.zip "
18
+ export "file_name=NP_mac-arm-${{ hashFiles('build.mac.sh') }}.tar.gz "
19
19
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
20
20
curl -L "$file_url" -o "$file_name" || exit 0
21
- unzip -q "$file_name" || exit 0
21
+ tar -xf "$file_name" || exit 0
22
22
rm ${file_name} || exit 0
23
23
- name : Uninstall homebrew
24
24
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
@@ -35,10 +35,10 @@ jobs:
35
35
CACHE_SAS : ${{ secrets.CACHE_SAS }}
36
36
run : |
37
37
cd ..
38
- export "file_name=NP_mac-arm-${{ hashFiles('build.mac.sh') }}.zip "
38
+ export "file_name=NP_mac-arm-${{ hashFiles('build.mac.sh') }}.tar.gz "
39
39
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
40
40
rm -rf ${file_name}
41
- zip -r ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
41
+ tar -cf ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
42
42
curl -H "x-ms-blob-type: BlockBlob" --upload-file ${file_name} --url "$file_url"
43
43
rm -rf ${file_name}
44
44
mac_x64 :
@@ -52,10 +52,10 @@ jobs:
52
52
CACHE_SAS : ${{ secrets.CACHE_SAS }}
53
53
run : |
54
54
cd ..
55
- export "file_name=NP_mac-intel-${{ hashFiles('build.mac.sh') }}.zip "
55
+ export "file_name=NP_mac-intel-${{ hashFiles('build.mac.sh') }}.tar.gz "
56
56
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
57
57
curl -L "$file_url" -o "$file_name" || exit 0
58
- unzip -q "$file_name" || exit 0
58
+ tar -xf "$file_name" || exit 0
59
59
rm ${file_name} || exit 0
60
60
- name : Uninstall homebrew
61
61
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
@@ -72,10 +72,10 @@ jobs:
72
72
CACHE_SAS : ${{ secrets.CACHE_SAS }}
73
73
run : |
74
74
cd ..
75
- export "file_name=NP_mac-intel-${{ hashFiles('build.mac.sh') }}.zip "
75
+ export "file_name=NP_mac-intel-${{ hashFiles('build.mac.sh') }}.tar.gz "
76
76
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
77
77
rm -rf ${file_name}
78
- zip -r ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
78
+ tar -cf ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
79
79
curl -H "x-ms-blob-type: BlockBlob" --upload-file ${file_name} --url "$file_url"
80
80
rm -rf ${file_name}
81
81
@@ -90,10 +90,10 @@ jobs:
90
90
CACHE_SAS : ${{ secrets.CACHE_SAS }}
91
91
run : |
92
92
cd ..
93
- export "file_name=NP_mac-arm-no_lto-${{ hashFiles('build.mac.sh') }}.zip "
93
+ export "file_name=NP_mac-arm-no_lto-${{ hashFiles('build.mac.sh') }}.tar.gz "
94
94
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
95
95
curl -L "$file_url" -o "$file_name" || exit 0
96
- unzip -q "$file_name" || exit 0
96
+ tar -xf "$file_name" || exit 0
97
97
rm ${file_name} || exit 0
98
98
- name : Uninstall homebrew
99
99
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
@@ -110,10 +110,10 @@ jobs:
110
110
CACHE_SAS : ${{ secrets.CACHE_SAS }}
111
111
run : |
112
112
cd ..
113
- export "file_name=NP_mac-arm-no_lto-${{ hashFiles('build.mac.sh') }}.zip "
113
+ export "file_name=NP_mac-arm-no_lto-${{ hashFiles('build.mac.sh') }}.tar.gz "
114
114
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
115
115
rm -rf ${file_name}
116
- zip -r ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
116
+ tar -cf ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
117
117
curl -H "x-ms-blob-type: BlockBlob" --upload-file ${file_name} --url "$file_url"
118
118
rm -rf ${file_name}
119
119
mac_x64_no_lto :
@@ -127,10 +127,10 @@ jobs:
127
127
CACHE_SAS : ${{ secrets.CACHE_SAS }}
128
128
run : |
129
129
cd ..
130
- export "file_name=NP_mac-intel-no_lto-${{ hashFiles('build.mac.sh') }}.zip "
130
+ export "file_name=NP_mac-intel-no_lto-${{ hashFiles('build.mac.sh') }}.tar.gz "
131
131
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
132
132
curl -L "$file_url" -o "$file_name" || exit 0
133
- unzip -q "$file_name" || exit 0
133
+ tar -xf "$file_name" || exit 0
134
134
rm ${file_name} || exit 0
135
135
- name : Uninstall homebrew
136
136
run : /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
@@ -150,7 +150,7 @@ jobs:
150
150
export "file_name=NP_mac-intel-no_lto-${{ hashFiles('build.mac.sh') }}.zip"
151
151
export "file_url=https://nuitkapythonci.blob.core.windows.net/job-cache/${file_name}?${CACHE_SAS}"
152
152
rm -rf ${file_name}
153
- zip -r ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
153
+ tar -cf ${file_name} Nuitka-Python-Deps Nuitka-Python/dep-build
154
154
curl -H "x-ms-blob-type: BlockBlob" --upload-file ${file_name} --url "$file_url"
155
155
rm -rf ${file_name}
156
156
0 commit comments