Skip to content

Commit 87df520

Browse files
authored
Merge pull request #36 from Nicolai-Electronics/renze/remove-devices
Remove non-existent platforms from CI/CD build
2 parents c415e1a + decc9f5 commit 87df520

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
device: ["tanmatsu", "konsool", "mch2022", "hackerhotel-2024", "hackerhotel-2026", "esp32-p4-function-ev-board", "kami"]
9+
device:
10+
[
11+
"tanmatsu",
12+
"kami",
13+
"mch2022",
14+
"hackerhotel-2024",
15+
"esp32-p4-function-ev-board",
16+
]
1017
steps:
1118
- run: sudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
1219
- name: Check out repository

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ run-name: Add release artifacts
33

44
on:
55
workflow_run:
6-
branches: ['v*.*.*']
6+
branches: ["v*.*.*"]
77
workflows: [Build]
88
types:
99
- completed
@@ -28,11 +28,9 @@ jobs:
2828
- name: Add artifacts to release
2929
run: |
3030
gh release upload ${{ github.event.workflow_run.head_branch }} tanmatsu.zip
31-
gh release upload ${{ github.event.workflow_run.head_branch }} konsool.zip
31+
gh release upload ${{ github.event.workflow_run.head_branch }} kami.zip
3232
gh release upload ${{ github.event.workflow_run.head_branch }} mch2022.zip
3333
gh release upload ${{ github.event.workflow_run.head_branch }} hackerhotel-2024.zip
34-
gh release upload ${{ github.event.workflow_run.head_branch }} hackerhotel-2026.zip
3534
gh release upload ${{ github.event.workflow_run.head_branch }} esp32-p4-function-ev-board.zip
36-
gh release upload ${{ github.event.workflow_run.head_branch }} kami.zip
3735
env:
3836
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)