mirror of
https://github.com/NinjaCheetah/WiiPy.git
synced 2025-04-26 13:21:01 -04:00
Use custom cache dir to hopefully speed up launches after the first launch
This commit is contained in:
parent
b77587771c
commit
33197c36f1
6
.github/workflows/python-build.yaml
vendored
6
.github/workflows/python-build.yaml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
pip install -r requirements.txt
|
||||
- name: Build Application
|
||||
run: |
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py -o wiipy
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" -o wiipy
|
||||
- name: Prepare Package for Upload
|
||||
run: |
|
||||
mv wiipy ~/wiipy
|
||||
@ -59,7 +59,7 @@ jobs:
|
||||
pip install -r requirements.txt
|
||||
- name: Build Application
|
||||
run: |
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py -o wiipy
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" -o wiipy
|
||||
- name: Prepare Package for Upload
|
||||
run: |
|
||||
mv wiipy ~/wiipy
|
||||
@ -89,7 +89,7 @@ jobs:
|
||||
pip install -r requirements.txt
|
||||
- name: Build Application
|
||||
run: |
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py
|
||||
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy"
|
||||
- name: Upload Application
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
|
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
||||
CC=python -m nuitka
|
||||
|
||||
linux:
|
||||
$(CC) --show-progress --assume-yes-for-downloads --onefile wiipy.py -o wiipy
|
||||
$(CC) --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" -o wiipy
|
||||
|
||||
linux-install:
|
||||
install wiipy /usr/bin/
|
||||
|
Loading…
x
Reference in New Issue
Block a user