This commit is contained in:
Mateusz Faderewski 2023-02-24 18:49:18 +01:00
parent cded34c773
commit 9c8d215f33

View File

@ -44,6 +44,7 @@ jobs:
os: [windows-latest, ubuntu-latest] os: [windows-latest, ubuntu-latest]
include: include:
- os: windows-latest - os: windows-latest
pyinstaller-build-options: --target-arch=64bit
pyinstaller-options: --console --icon ../../assets/sc64_logo_256_256.png pyinstaller-options: --console --icon ../../assets/sc64_logo_256_256.png
package-name: sc64-windows package-name: sc64-windows
package-options: -c -a -f package-options: -c -a -f
@ -80,9 +81,10 @@ jobs:
- name: Compile and install pyinstaller - name: Compile and install pyinstaller
run: | run: |
pip3 uninstall pyinstaller
pip3 install wheel pip3 install wheel
pushd bootloader pushd bootloader
python3 ./waf all python3 ./waf all ${{ matrix.pyinstaller-build-options }}
popd popd
pip3 install . pip3 install .
working-directory: pyinstaller working-directory: pyinstaller