2021-09-26 14:42:50 +02:00
|
|
|
name: build
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-25 23:46:53 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2023-02-11 11:17:55 +01:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-02-14 22:19:38 +01:00
|
|
|
release:
|
2021-09-25 23:46:53 +02:00
|
|
|
types:
|
|
|
|
- created
|
2021-02-14 22:19:38 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2023-02-18 22:43:41 +01:00
|
|
|
build-fw-hw-sw:
|
|
|
|
runs-on: ubuntu-latest
|
2021-02-14 22:19:38 +01:00
|
|
|
|
2023-02-18 22:43:41 +01:00
|
|
|
steps:
|
|
|
|
- name: Git checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-02-11 10:42:18 +01:00
|
|
|
|
2023-02-18 22:43:41 +01:00
|
|
|
- name: Build script
|
|
|
|
run: ./docker_build.sh release --force-clean
|
2021-02-14 22:19:38 +01:00
|
|
|
|
2023-02-18 22:43:41 +01:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: SC64
|
|
|
|
path: SC64.zip
|
2021-02-14 22:19:38 +01:00
|
|
|
|
2023-02-18 22:43:41 +01:00
|
|
|
- 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
|
|
|
|
sc64_firmware.bin
|
2023-02-18 18:36:03 +01:00
|
|
|
|
2023-02-18 19:46:07 +01:00
|
|
|
build-apps:
|
2023-02-18 18:36:03 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-02-18 18:40:34 +01:00
|
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
2023-02-18 18:55:54 +01:00
|
|
|
include:
|
|
|
|
- os: windows-latest
|
2023-02-18 22:43:41 +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-18 22:31:42 +01:00
|
|
|
|
2023-02-18 18:55:54 +01:00
|
|
|
- os: ubuntu-latest
|
2023-02-18 22:43:41 +01:00
|
|
|
package-name: sc64-linux
|
2023-02-18 22:11:06 +01:00
|
|
|
package-options: -czf
|
2023-02-18 22:43:41 +01:00
|
|
|
package-extension: tgz
|
2023-02-18 22:31:42 +01:00
|
|
|
|
2023-02-18 18:55:54 +01:00
|
|
|
- os: macos-latest
|
2023-02-18 22:43:41 +01:00
|
|
|
pyinstaller-options: --console --icon ../../assets/sc64_logo_256_256.png
|
|
|
|
package-name: sc64-macos
|
2023-02-18 22:11:06 +01:00
|
|
|
package-options: -czf
|
2023-02-18 22:43:41 +01:00
|
|
|
package-extension: tgz
|
2023-02-18 18:36:03 +01:00
|
|
|
|
2023-02-18 18:38:43 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
2023-02-18 18:36:03 +01:00
|
|
|
steps:
|
|
|
|
- name: Git checkout
|
|
|
|
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-18 18:36:03 +01:00
|
|
|
|
|
|
|
- name: Install python requirements
|
|
|
|
run: pip install -r requirements.txt pyinstaller
|
|
|
|
working-directory: sw/pc
|
|
|
|
|
|
|
|
- name: Create sc64 executable
|
2023-02-18 22:43:41 +01:00
|
|
|
run: pyinstaller --clean --onefile ${{ matrix.pyinstaller-options }} sc64.py
|
2023-02-18 18:36:03 +01:00
|
|
|
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
|
|
|
|
|
2023-02-18 18:36:03 +01:00
|
|
|
- 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-18 22:31:42 +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-18 22:43:41 +01:00
|
|
|
files: sw/pc/package/${{ matrix.package-name }}.${{ matrix.package-extension }}
|