Skip to content

Commit b185723

Browse files
committed
update to 9.1.1, switch to new debian package and bin naming scheme
1 parent 9e9b5fa commit b185723

8 files changed

+10
-8
lines changed

.github/workflows/external_trigger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
2424
echo "> External trigger running off of master branch. To disable this trigger, add \`qemu-static_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
2525
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
26-
EXT_RELEASE=$(echo 9.0.2+ds-1~bpo12+1)
26+
EXT_RELEASE=$(echo 9.1.1+ds-2~bpo12+1)
2727
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
2828
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2929
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM debian:bookworm AS buildstage
44

5-
ARG QEMU_VERSION="9.0.2+ds-1~bpo12+1"
5+
ARG QEMU_VERSION="9.1.1+ds-2~bpo12+1"
66

77
RUN \
88
echo "**** install build deps ****" && \
@@ -18,7 +18,7 @@ RUN \
1818
/tmp/qemu && \
1919
curl -o \
2020
/tmp/qemu.deb -L \
21-
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user-static_${QEMU_VERSION}_amd64.deb" && \
21+
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user_${QEMU_VERSION}_amd64.deb" && \
2222
cd /tmp && \
2323
dpkg-deb -R \
2424
qemu.deb \

Dockerfile.aarch64

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM debian:bookworm AS buildstage
44

5-
ARG QEMU_VERSION="9.0.2+ds-1~bpo12+1"
5+
ARG QEMU_VERSION="9.1.1+ds-2~bpo12+1"
66

77
RUN \
88
echo "**** install build deps ****" && \
@@ -18,7 +18,7 @@ RUN \
1818
/tmp/qemu && \
1919
curl -o \
2020
/tmp/qemu.deb -L \
21-
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user-static_${QEMU_VERSION}_arm64.deb" && \
21+
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user_${QEMU_VERSION}_arm64.deb" && \
2222
cd /tmp && \
2323
dpkg-deb -R \
2424
qemu.deb \

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pipeline {
124124
steps{
125125
script{
126126
env.EXT_RELEASE = sh(
127-
script: ''' echo 9.0.2+ds-1~bpo12+1 ''',
127+
script: ''' echo 9.1.1+ds-2~bpo12+1 ''',
128128
returnStdout: true).trim()
129129
env.RELEASE_LINK = 'custom_command'
130130
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@ docker run --rm -it \
6767
```
6868
## Versions
6969

70+
* **07.11.24:** - Upgrade to 9.1.1, switch to new debian package and bin naming scheme.
7071
* **14.10.24:** - Initial release.

jenkins-vars.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# jenkins variables
44
project_name: docker-qemu-static
55
external_type: na
6-
custom_version_command: "echo 9.0.2+ds-1~bpo12+1"
6+
custom_version_command: "echo 9.1.1+ds-2~bpo12+1"
77
release_type: stable
88
release_tag: latest
99
ls_branch: master

readme-vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ full_custom_readme: |
7171
```
7272
## Versions
7373
74+
* **07.11.24:** - Upgrade to 9.1.1, switch to new debian package and bin naming scheme.
7475
* **14.10.24:** - Initial release.
7576
{%- endraw %}

root/register

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ if [ "${1}" = "--reset" ]; then
1515
find /proc/sys/fs/binfmt_misc -type f -name 'qemu-*' -exec sh -c 'echo -1 > {}' \;
1616
fi
1717

18-
exec qemu-binfmt-conf --qemu-suffix "-static" --qemu-path "/qemu" $@
18+
exec qemu-binfmt-conf --qemu-path "/qemu" $@

0 commit comments

Comments
 (0)