File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,31 @@ jobs:
10
10
steps :
11
11
- name : Check out repository code
12
12
uses : actions/checkout@v4
13
+ - uses : actions/cache@v4
14
+ with :
15
+ path : |
16
+ ../Nuitka-Python-Deps
17
+ key : ${{ runner.os }}-${{ hashFiles('build.mac.sh') }}
13
18
- name : Run Build
14
19
run : bash build.mac.sh
20
+ - uses : actions/upload-artifact@v4
21
+ with :
22
+ name : Nuitka-Python311_arm64
23
+ path : ~/Library/Nuitka-Python311-arm64
15
24
mac_x64 :
16
25
name : MacOS Intel Build
17
26
runs-on : macos-latest
18
27
steps :
19
28
- name : Check out repository code
20
29
uses : actions/checkout@v4
30
+ - uses : actions/cache@v4
31
+ with :
32
+ path : |
33
+ ../Nuitka-Python-Deps
34
+ key : ${{ runner.os }}-${{ hashFiles('build.mac.sh') }}
21
35
- name : Run Build
22
36
run : arch -x86_64 bash build.mac.sh
37
+ - uses : actions/upload-artifact@v4
38
+ with :
39
+ name : Nuitka-Python311_x86_64
40
+ path : ~/Library/Nuitka-Python311-x86_64
You can’t perform that action at this time.
0 commit comments