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:
1010 steps :
1111 - name : Check out repository code
1212 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') }}
1318 - name : Run Build
1419 run : bash build.mac.sh
20+ - uses : actions/upload-artifact@v4
21+ with :
22+ name : Nuitka-Python311_arm64
23+ path : ~/Library/Nuitka-Python311-arm64
1524 mac_x64 :
1625 name : MacOS Intel Build
1726 runs-on : macos-latest
1827 steps :
1928 - name : Check out repository code
2029 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') }}
2135 - name : Run Build
2236 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