We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
focal
1 parent cb0782b commit 6f27580Copy full SHA for 6f27580
2 files changed
.github/workflows/build.yml
@@ -250,6 +250,7 @@ jobs:
250
fail-fast: false
251
matrix:
252
distro:
253
+ - focal
254
- jammy
255
256
env:
src/usr/local/containerbase/util.sh
@@ -148,12 +148,7 @@ function require_arch () {
148
149
function require_distro () {
150
case "$DISTRO_CODENAME" in
151
- "focal") #supported (only amd64)
152
- if [[ "$ARCHITECTURE" != "x86_64" ]]; then
153
- echo "Distro 'focal' only supported on 'x86_64' arch!" >&2
154
- exit 1
155
- fi
156
- ;;
+ "focal") ;; #supported
157
"jammy") ;; #supported
158
"noble") ;; #supported
159
*)
0 commit comments