mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
Create bundle-firmware action for release branch (#401)
This commit is contained in:
parent
388c2cfe4b
commit
9ae3e48600
15
.github/actions/bundle-firmware/action.yml
vendored
Normal file
15
.github/actions/bundle-firmware/action.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
name: Bundle All
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- name: 'Download artifacts'
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: firmwares
|
||||||
|
- name: 'Upload Artifact'
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: 'all-firmwares'
|
||||||
|
path: firmwares/
|
||||||
|
retention-days: 3
|
||||||
10
.github/workflows/build-firmware.yml
vendored
10
.github/workflows/build-firmware.yml
vendored
@ -9,7 +9,7 @@ on:
|
|||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
Build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
board: [
|
board: [
|
||||||
@ -54,3 +54,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
board_id: ${{ matrix.board.id }}
|
board_id: ${{ matrix.board.id }}
|
||||||
arch: ${{ matrix.board.arch }}
|
arch: ${{ matrix.board.arch }}
|
||||||
|
Bundle:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ Build ]
|
||||||
|
if: (github.event_name == 'pull_request' && startsWith(github.head_ref, 'release'))
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: "Bundle"
|
||||||
|
uses: ./.github/actions/bundle-firmware
|
||||||
|
|||||||
4
.github/workflows/build-sdk.yml
vendored
4
.github/workflows/build-sdk.yml
vendored
@ -9,7 +9,7 @@ on:
|
|||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
Build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
board: [
|
board: [
|
||||||
@ -23,4 +23,4 @@ jobs:
|
|||||||
uses: ./.github/actions/build-sdk
|
uses: ./.github/actions/build-sdk
|
||||||
with:
|
with:
|
||||||
board_id: ${{ matrix.board.id }}
|
board_id: ${{ matrix.board.id }}
|
||||||
arch: ${{ matrix.board.arch }}
|
arch: ${{ matrix.board.arch }}
|
||||||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -4,7 +4,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [opened, synchronize, reopened]
|
types: [ opened, synchronize, reopened ]
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## Before release
|
## Before release
|
||||||
|
|
||||||
|
- Issue with `enum DeviceType` when compiling from C (check all TactilityC enums!)
|
||||||
- Automate release process more
|
- Automate release process more
|
||||||
- Elecrow Basic & Advance 3.5" memory issue: not enough memory for App Hub
|
- Elecrow Basic & Advance 3.5" memory issue: not enough memory for App Hub
|
||||||
- App Hub crashes if you close it while an app is being installed
|
- App Hub crashes if you close it while an app is being installed
|
||||||
@ -9,6 +10,8 @@
|
|||||||
|
|
||||||
## Higher Priority
|
## Higher Priority
|
||||||
|
|
||||||
|
- Wi-Fi should connect to the access point with the strongest signal over similarly named APs
|
||||||
|
- Wi-Fi connect app should focus on password field when SSID was passed on
|
||||||
- Fix Cardputer (original): use LV_KEY_NEXT and _PREV in keyboard mapping instead of encoder driver hack (and check GPIO app if it then hangs too)
|
- Fix Cardputer (original): use LV_KEY_NEXT and _PREV in keyboard mapping instead of encoder driver hack (and check GPIO app if it then hangs too)
|
||||||
- Logging with a function that uses std::format
|
- Logging with a function that uses std::format
|
||||||
- Calculator bugs (see GitHub issue)
|
- Calculator bugs (see GitHub issue)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user