We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a618b6e commit ca3c9fbCopy full SHA for ca3c9fb
.github/workflows/meta-kiss.yml
@@ -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