@@ -51,10 +51,18 @@ jobs:
5151 if : github.ref != 'refs/heads/master' && !startsWith(github.ref, 'refs/tags/v')
5252 run : |
5353 ./kas-container build kas/ci/fast.yml
54- - name : Build Full CI targets
54+ - name : Build Full CI targets for bookworm
5555 if : github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
5656 run : |
57- ./kas-container build kas/ci/full.yml
57+ ./kas-container build kas/ci/full-bookworm.yml
58+ - name : Build Full CI targets for trixie
59+ if : github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
60+ run : |
61+ ./kas-container build kas/ci/full-trixie.yml
62+ - name : Build Full CI targets for noble
63+ if : github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
64+ run : |
65+ ./kas-container build kas/ci/full-noble.yml
5866 - name : Upload NanoPI images
5967 uses : actions/upload-artifact@v4
6068 if : startsWith(github.ref, 'refs/tags/v')
@@ -71,14 +79,22 @@ jobs:
7179 path : |
7280 build/tmp/deploy/images/beaglebone-*/mtda-image-mtda-*-beaglebone-*.wic
7381 build/tmp/deploy/images/beaglebone-*/mtda-image-mtda-*-beaglebone-*.wic.bmap
74- - name : Publish Debian packages to Gemfury
82+ - name : Publish Debian bookworm packages to Gemfury
7583 env :
7684 GEMFURY_PUSH_TOKEN : ${{ secrets.GEMFURY_PUSH_TOKEN }}
7785 if : startsWith(github.ref, 'refs/tags/v')
7886 run : |
7987 find build/tmp/deploy/isar-apt/mtda-bookworm-* -name '*.deb' -print | while read p; do
8088 curl -F package=@${p} https://{$GEMFURY_PUSH_TOKEN}@push.fury.io/mtda/;
8189 done
90+ - name : Publish Debian trixie packages to Gemfury
91+ env :
92+ GEMFURY_PUSH_TOKEN : ${{ secrets.GEMFURY_TRIXIE_PUSH_TOKEN }}
93+ if : startsWith(github.ref, 'refs/tags/v')
94+ run : |
95+ find build/tmp/deploy/isar-apt/mtda-trixie-* -name '*.deb' -print | while read p; do
96+ curl -F package=@${p} https://{$GEMFURY_PUSH_TOKEN}@push.fury.io/mtda-trixie/;
97+ done
8298 - name : Import GPG key
8399 if : startsWith(github.ref, 'refs/tags/v')
84100 id : import_gpg
0 commit comments