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 18:36:03 +01:00
|
|
|
build-fw-hw-sw:
|
2021-02-14 22:19:38 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-02-18 18:36:03 +01:00
|
|
|
- name: Git checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-02-11 10:42:18 +01:00
|
|
|
|
2021-02-14 22:19:38 +01:00
|
|
|
- name: Build script
|
2021-11-16 22:37:48 +01:00
|
|
|
run: ./docker_build.sh release --force-clean
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
- name: Upload artifact
|
2023-02-11 11:43:03 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-02-14 22:19:38 +01:00
|
|
|
with:
|
2023-02-18 18:55:54 +01:00
|
|
|
name: SC64-FW-HW-SW
|
|
|
|
path: SC64-FW-HW-SW.zip
|
2021-02-14 22:19:38 +01:00
|
|
|
|
|
|
|
- name: Get release
|
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
|
|
|
id: get_release
|
2023-02-11 11:43:03 +01:00
|
|
|
uses: bruceadams/get-release@v1.3.2
|
2021-02-14 22:19:38 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
|
|
|
|
- name: Upload release asset
|
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
2023-02-11 11:43:03 +01:00
|
|
|
uses: actions/upload-release-asset@v1 # This will start failing soon due to needing node 12!
|
2021-02-14 22:19:38 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.get_release.outputs.upload_url }}
|
2023-02-18 18:55:54 +01:00
|
|
|
asset_path: SC64-FW-HW-SW.zip
|
|
|
|
asset_name: SC64-FW-HW-SW.zip
|
2021-02-14 22:19:38 +01:00
|
|
|
asset_content_type: application/zip
|
2023-02-18 18:36:03 +01:00
|
|
|
|
|
|
|
build-executables:
|
|
|
|
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
|
|
|
|
artifact: SC64-Windows
|
|
|
|
- os: ubuntu-latest
|
|
|
|
artifact: SC64-Linux
|
|
|
|
- os: macos-latest
|
|
|
|
artifact: SC64-macOS
|
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
|
|
|
|
run: pyinstaller --onefile sc64.py
|
|
|
|
working-directory: sw/pc
|
|
|
|
|
|
|
|
- name: Create primer executable
|
|
|
|
run: pyinstaller --onefile primer.py
|
|
|
|
working-directory: sw/pc
|
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-02-18 18:55:54 +01:00
|
|
|
name: ${{ matrix.artifact }}
|
2023-02-18 18:42:21 +01:00
|
|
|
path: sw/pc/dist/*
|