SummerCart64/.github/workflows/build.yml

119 lines
3.3 KiB
YAML
Raw Normal View History

name: build
2021-02-14 22:19:38 +01:00
on:
push:
branches:
- main
pull_request:
branches:
- main
2021-02-14 22:19:38 +01:00
release:
types:
- created
2021-02-14 22:19:38 +01:00
workflow_dispatch:
jobs:
2023-02-24 19:16:39 +01:00
build-fw-hw-sw:
runs-on: ubuntu-latest
steps:
- name: Download SummerCart64 repository
uses: actions/checkout@v3
- name: Build everything
run: ./docker_build.sh release --force-clean
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: SC64
path: SC64.zip
- name: Upload release assets
if: github.event_name == 'release' && github.event.action == 'created'
uses: softprops/action-gh-release@v0.1.15
with:
files: |
SC64.zip
sw/update/sc64_firmware.bin
build-sc64-py:
strategy:
matrix:
2023-02-24 18:59:37 +01:00
os: [windows-latest, ubuntu-latest, macos-latest]
2023-02-18 18:55:54 +01:00
include:
2023-02-24 18:30:27 +01:00
- os: windows-latest
2023-02-24 18:49:18 +01:00
pyinstaller-build-options: --target-arch=64bit
2023-02-24 18:30:27 +01:00
pyinstaller-options: --console --icon ../../assets/sc64_logo_256_256.png
package-name: sc64-windows
package-options: -c -a -f
package-extension: zip
2023-02-24 18:46:45 +01:00
- os: ubuntu-latest
package-name: sc64-linux
package-options: -czf
package-extension: tgz
2023-02-18 22:31:42 +01:00
2023-02-24 18:59:37 +01:00
- os: macos-latest
pyinstaller-options: --console --icon ../../assets/sc64_logo_256_256.png
package-name: sc64-macos
package-options: -czf
package-extension: tgz
2023-02-18 18:38:43 +01:00
runs-on: ${{ matrix.os }}
steps:
2023-02-24 18:46:45 +01:00
- name: Download SummerCart64 repository
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
2023-02-18 18:40:34 +01:00
python-version: 3.11
2023-02-24 18:30:27 +01:00
- name: Download pyinstaller repository
2023-02-24 18:31:15 +01:00
uses: actions/checkout@v3
2023-02-24 18:30:27 +01:00
with:
2023-02-24 18:33:15 +01:00
repository: 'pyinstaller/pyinstaller'
2023-02-24 18:30:27 +01:00
ref: 'v5.8.0'
path: pyinstaller
2023-02-24 18:26:07 +01:00
2023-02-24 18:30:27 +01:00
- name: Compile and install pyinstaller
run: |
2023-02-24 18:49:18 +01:00
pip3 uninstall pyinstaller
2023-02-24 18:46:45 +01:00
pip3 install wheel
2023-02-24 18:30:27 +01:00
pushd bootloader
2023-02-24 18:49:18 +01:00
python3 ./waf all ${{ matrix.pyinstaller-build-options }}
2023-02-24 18:30:27 +01:00
popd
2023-02-24 18:40:08 +01:00
pip3 install .
2023-02-24 18:30:27 +01:00
working-directory: pyinstaller
2023-02-24 18:26:07 +01:00
2023-02-24 18:36:54 +01:00
- name: Install sc64.py requirements
run: pip3 install -r requirements.txt
working-directory: sw/pc
2023-02-24 18:59:37 +01:00
- name: Create sc64.py executable
2023-02-24 18:30:27 +01:00
run: python3 -m PyInstaller --clean --onefile ${{ matrix.pyinstaller-options }} sc64.py
working-directory: sw/pc
2023-02-18 21:56:24 +01:00
- name: Package executable
run: |
mkdir package
2023-02-18 22:18:25 +01:00
pushd dist
2023-02-18 22:43:41 +01:00
tar ${{ matrix.package-options }} ../package/${{ matrix.package-name }}.${{ matrix.package-extension }} *
2023-02-18 22:18:25 +01:00
popd
2023-02-18 21:46:03 +01:00
working-directory: sw/pc
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
2023-02-18 22:43:41 +01:00
name: ${{ matrix.package-name }}
path: sw/pc/package/${{ matrix.package-name }}.${{ matrix.package-extension }}
2023-02-18 19:16:59 +01:00
2023-02-24 18:59:37 +01:00
- name: Upload release assets
if: github.event_name == 'release' && github.event.action == 'created'
uses: softprops/action-gh-release@v0.1.15
with:
2023-02-24 19:16:39 +01:00
files: |
sw/pc/package/${{ matrix.package-name }}.${{ matrix.package-extension }}