File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,12 @@ jobs:
125125 test :
126126 - { name: "recipes", case: "recipes" }
127127 - { name: "templating", case: "templating", variables: " -t escaped:\\$ba\\'d\\$gers\\ snakes" }
128- - { name: "debian (amd64)", case: "debian", variables: "-t architecture:amd64" }
129- - { name: "debian (arm64)", case: "debian", variables: "-t architecture:arm64" }
130- - { name: "debian (armhf)", case: "debian", variables: "-t architecture:armhf" }
128+ - { name: "debian (bookworm amd64)", case: "debian", variables: "-t architecture:amd64 -t suite:bookworm" }
129+ - { name: "debian (bookworm arm64)", case: "debian", variables: "-t architecture:arm64 -t suite:bookworm" }
130+ - { name: "debian (bookworm armhf)", case: "debian", variables: "-t architecture:armhf -t suite:bookworm" }
131+ - { name: "debian (trixie amd64)", case: "debian", variables: "-t architecture:amd64 -t suite:trixie" }
132+ - { name: "debian (trixie arm64)", case: "debian", variables: "-t architecture:arm64 -t suite:trixie" }
133+ - { name: "debian (trixie armhf)", case: "debian", variables: "-t architecture:armhf -t suite:trixie" }
131134 exclude :
132135 - backend : nofakemachine
133136 test : { name: "partitioning", case: "partitioning" }
Original file line number Diff line number Diff line change 11---
2- {{- $architecture := or .architecture "amd64"}}
3- architecture : {{$architecture}}
2+ {{- $architecture := or .architecture "amd64" }}
3+ {{- $suite := or .suite "bookworm" }}
4+
5+ architecture : {{ $architecture }}
46
57actions :
68 - action : debootstrap
7- suite : bullseye
9+ suite : {{ $suite }}
810 variant : minbase
911 merged-usr : true
1012
You can’t perform that action at this time.
0 commit comments