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-03-12 00:23:43 +01:00
|
|
|
build-firmware:
|
2021-02-14 22:19:38 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-02-24 23:27:34 +01:00
|
|
|
- name: Download SummerCart64 repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-03-12 00:23:43 +01:00
|
|
|
- name: Set package version
|
2023-02-24 23:27:34 +01:00
|
|
|
uses: frabert/replace-string-action@v2
|
2023-03-12 00:23:43 +01:00
|
|
|
id: version
|
2021-02-14 22:19:38 +01:00
|
|
|
with:
|
2023-02-24 23:27:34 +01:00
|
|
|
pattern: '\/'
|
2023-03-12 00:23:43 +01:00
|
|
|
string: '${{ github.ref_name }}'
|
2023-02-24 23:27:34 +01:00
|
|
|
replace-with: '-'
|
2023-02-11 10:42:18 +01:00
|
|
|
|
2023-03-12 00:23:43 +01:00
|
|
|
- name: Build firmware
|
2021-11-16 22:37:48 +01:00
|
|
|
run: ./docker_build.sh release --force-clean
|
2023-02-24 23:27:34 +01:00
|
|
|
env:
|
2023-03-12 00:23:43 +01:00
|
|
|
SC64_VERSION: ${{ steps.version.outputs.replaced }}
|
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-03-12 00:23:43 +01:00
|
|
|
name: sc64-pkg-${{ steps.version.outputs.replaced }}
|
2023-02-24 23:27:34 +01:00
|
|
|
path: |
|
2023-03-12 00:23:43 +01:00
|
|
|
sc64-extra-${{ steps.version.outputs.replaced }}.zip
|
|
|
|
sc64-firmware-${{ steps.version.outputs.replaced }}.bin
|
2021-02-14 22:19:38 +01:00
|
|
|
|
2023-02-24 23:27:34 +01:00
|
|
|
- name: Upload release assets
|
2021-02-14 22:19:38 +01:00
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
2023-02-24 23:27:34 +01:00
|
|
|
uses: softprops/action-gh-release@v0.1.15
|
|
|
|
with:
|
|
|
|
files: |
|
2023-03-12 00:23:43 +01:00
|
|
|
sc64-extra-${{ steps.version.outputs.replaced }}.zip
|
|
|
|
sc64-firmware-${{ steps.version.outputs.replaced }}.bin
|
2023-02-24 23:27:34 +01:00
|
|
|
|
2023-03-12 00:23:43 +01:00
|
|
|
build-deployer:
|
2023-02-24 23:27:34 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
|
|
|
include:
|
|
|
|
- os: windows-latest
|
2023-03-12 00:23:43 +01:00
|
|
|
executable: sc64deployer.exe
|
|
|
|
name: sc64-deployer-windows
|
|
|
|
options: -c -a -f
|
|
|
|
extension: zip
|
2023-02-24 23:27:34 +01:00
|
|
|
|
|
|
|
- os: ubuntu-latest
|
2023-03-12 00:23:43 +01:00
|
|
|
linux-packages: libudev-dev
|
|
|
|
executable: sc64deployer
|
|
|
|
name: sc64-deployer-linux
|
|
|
|
options: -czf
|
|
|
|
extension: tar.gz
|
2023-02-24 23:27:34 +01:00
|
|
|
|
|
|
|
- os: macos-latest
|
2023-03-12 00:23:43 +01:00
|
|
|
executable: sc64deployer
|
|
|
|
name: sc64-deployer-macos
|
|
|
|
options: -czf
|
|
|
|
extension: tgz
|
2021-02-14 22:19:38 +01:00
|
|
|
|
2023-02-24 23:27:34 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Download SummerCart64 repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-03-12 00:23:43 +01:00
|
|
|
- name: Set package version
|
2023-02-24 23:27:34 +01:00
|
|
|
uses: frabert/replace-string-action@v2
|
2023-03-12 00:23:43 +01:00
|
|
|
id: version
|
2023-02-24 23:27:34 +01:00
|
|
|
with:
|
|
|
|
pattern: '\/'
|
2023-03-12 00:23:43 +01:00
|
|
|
string: '${{ github.ref_name }}'
|
2023-02-24 23:27:34 +01:00
|
|
|
replace-with: '-'
|
|
|
|
|
2023-03-12 00:23:43 +01:00
|
|
|
- name: Install linux packages
|
|
|
|
if: matrix.linux-packages
|
2023-02-24 23:27:34 +01:00
|
|
|
run: |
|
2023-03-12 00:23:43 +01:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install ${{ matrix.linux-packages }}
|
|
|
|
|
|
|
|
- name: Build deployer
|
|
|
|
run: cargo b -r
|
|
|
|
working-directory: sw/deployer
|
2023-02-24 23:27:34 +01:00
|
|
|
|
|
|
|
- name: Package executable
|
|
|
|
run: |
|
|
|
|
mkdir package
|
2023-03-12 00:23:43 +01:00
|
|
|
cd target/release
|
|
|
|
tar ${{ matrix.options }} ../../package/${{ matrix.name }}-${{ steps.version.outputs.replaced }}.${{ matrix.extension }} ${{ matrix.executable }}
|
|
|
|
working-directory: sw/deployer
|
2023-02-24 23:27:34 +01:00
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-03-12 00:23:43 +01:00
|
|
|
name: ${{ matrix.name }}-${{ steps.version.outputs.replaced }}
|
|
|
|
path: sw/deployer/package/${{ matrix.name }}-${{ steps.version.outputs.replaced }}.${{ matrix.extension }}
|
2023-02-24 23:27:34 +01:00
|
|
|
|
|
|
|
- name: Upload release assets
|
2021-02-14 22:19:38 +01:00
|
|
|
if: github.event_name == 'release' && github.event.action == 'created'
|
2023-02-24 23:27:34 +01:00
|
|
|
uses: softprops/action-gh-release@v0.1.15
|
2021-02-14 22:19:38 +01:00
|
|
|
with:
|
2023-02-24 23:27:34 +01:00
|
|
|
files: |
|
2023-03-12 00:23:43 +01:00
|
|
|
sw/deployer/package/${{ matrix.name }}-${{ steps.version.outputs.replaced }}.${{ matrix.extension }}
|