Skip to content

Commit ca3c9fb

Browse files
committed
Add github workflow to ease maintainance
Signed-off-by: Kory Maincent <[email protected]>
1 parent a618b6e commit ca3c9fb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/meta-kiss.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
jobs:
6+
build-all:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
config: [ dogbonedark, freiheit93, stompduck, ]
11+
steps:
12+
- uses: actions/checkout@v5
13+
- name: Install kas
14+
run: pip install kas
15+
- name: Kiss checkout
16+
run: kas checkout
17+
- name: Configure machine
18+
run : sed -i "/MACHINE/c\MACHINE = \"${{ matrix.config }}\"" build/conf/local.conf
19+
- name: Source environment
20+
run: . openembedded-core/oe-init-build-env
21+
- name: Build image
22+
run: bitbake kiss-image
23+
- name: Full build cleanup
24+
run: rm -rf build

0 commit comments

Comments
 (0)