File tree Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 fail-fast : false
1111 matrix :
12- variant : [bookworm, bullseye]
12+ variant : [trixie, bookworm, bullseye]
1313 target : [arm64, x86_64]
1414 include :
1515 - target : arm64
3737 needs : [docker-build]
3838 strategy :
3939 matrix :
40- variant : [bookworm, bullseye]
40+ variant : [trixie, bookworm, bullseye]
4141 include :
42- - variant : bookworm
42+ - variant : trixie
4343 is_latest : true
4444 env :
4545 VERSION : ${{ matrix.variant }}
Original file line number Diff line number Diff line change 11ARG DOCKER_ARCH=
2- ARG DEBIAN_VERSION=
2+ ARG DEBIAN_VERSION
33FROM ${DOCKER_ARCH}debian:${DEBIAN_VERSION}
44
5+ ARG DEBIAN_VERSION
56RUN export DEBIAN_FRONTEND=noninteractive && \
67 apt-get update -y && \
78 apt-get install -y git-core gnupg flex bison gperf build-essential \
@@ -11,20 +12,18 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
1112 dosfstools gcc-aarch64-linux-gnu g++-aarch64-linux-gnu \
1213 gcc-arm-linux-gnueabi g++-arm-linux-gnueabi ccache \
1314 sudo cpio nano vim kmod kpartx wget libarchive-tools qemu-user-static \
14- xz-utils ruby-dev debootstrap multistrap libssl-dev parted \
15+ xz-utils ruby-dev debootstrap libssl-dev parted \
1516 live-build jq locales \
1617 gawk swig libusb-1.0-0-dev \
1718 pkg-config autoconf golang-go \
18- python3-distutils python3- dev python3-pip python3-pyelftools \
19+ python3-dev python3-pip python3-pyelftools \
1920 eatmydata debhelper libelf-dev libdw-dev && \
20- ( \
21- ( \
22- . /etc/os-release && \
23- echo deb http://deb.debian.org/debian $(echo "$VERSION_CODENAME" )-backports main >> /etc/apt/sources.list.d/backports.list && \
24- apt-get update -y && \
25- apt-get install -y -t $(echo "$VERSION_CODENAME" )-backports golang-go \
26- ) || true \
27- ) && \
21+ ( [ "$DEBIAN_VERSION" = "trixie" ] || apt-get install -y python3-distutils multistrap ) && \
22+ ( [ "$DEBIAN_VERSION" = "trixie" ] || ( \
23+ echo deb http://deb.debian.org/debian $(echo "$DEBIAN_VERSION" )-backports main >> /etc/apt/sources.list.d/backports.list && \
24+ apt-get update -y && \
25+ ( apt-get install -y -t $(echo "$DEBIAN_VERSION" )-backports golang-go || true ) \
26+ ) ) && \
2827 apt-get autoclean
2928
3029RUN export DEBIAN_FRONTEND=noninteractive && \
You can’t perform that action at this time.
0 commit comments