Skip to content

Commit 8be1428

Browse files
committed
prep v8.12.0
1 parent 8fa3dc0 commit 8be1428

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

.github/workflows/build_ci_multi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v3
3434
- run: |
3535
sudo apt-get update
36-
sudo apt-get -y install buildah less git make podman qemu qemu-user-static clamav clamav-freshclam
36+
sudo apt-get -y install buildah less git make podman clamav clamav-freshclam
3737
name: 'install dev deps'
3838
- run: buildah unshare make branch_or_ref=master release_tag=master multibuild
3939
name: 'build multi image'

.github/workflows/build_latest_release_multi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
4141
- run: |
4242
sudo apt-get update
43-
sudo apt-get -y install buildah less git make podman qemu qemu-user-static clamav clamav-freshclam
43+
sudo apt-get -y install buildah less git make podman clamav clamav-freshclam
4444
name: 'install dev deps'
4545
- name: Sets env vars
4646
run: |

.github/workflows/build_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
4444
- run: |
4545
sudo apt-get update
46-
sudo apt-get -y install buildah less git make podman qemu clamav clamav-freshclam
46+
sudo apt-get -y install buildah less git make podman clamav clamav-freshclam
4747
name: 'install dev deps'
4848
- run: buildah unshare make branch_or_ref=master release_tag=master build_ref_images
4949
name: 'build master images'

.github/workflows/build_master_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
4444
- run: |
4545
sudo apt-get update
46-
sudo apt-get -y install buildah less git make podman qemu clamav clamav-freshclam
46+
sudo apt-get -y install buildah less git make podman clamav clamav-freshclam
4747
name: 'install dev deps'
4848
- run: buildah unshare make branch_or_ref=master release_tag=master build_debian
4949
name: 'build debian dev image'

.github/workflows/build_master_multi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
4444
- run: |
4545
sudo apt-get update
46-
sudo apt-get -y install buildah less git make podman qemu qemu-user-static clamav clamav-freshclam
46+
sudo apt-get -y install buildah less git make podman clamav clamav-freshclam
4747
name: 'install dev deps'
4848
- run: buildah unshare make branch_or_ref=master release_tag=master multibuild
4949
name: 'build multi image'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [8.12.0] - 2025-05-02
10+
### Changed
11+
- bump to curl 8.12.0
12+
- bump to alpine:3.21.2
13+
914
## [8.11.1] - 2024-12-11
1015
### Changed
1116
- bump to curl 8.11.1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ container_ids=`buildah ls --format "{{.ContainerID}}"`
55
# default setttings for official curl images
66
debian_base=docker.io/debian
77
fedora_base=docker.io/fedora
8-
base=docker.io/alpine:3.21.0
8+
base=docker.io/alpine:3.21.2
99
arch=""
1010
compiler="gcc"
1111
build_opts=" --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets -with-ssl --with-libssh2 --with-nghttp2=/usr --with-gssapi"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.11.1
1+
8.12.0

create_multi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildah manifest create curl-base-multi:${release_tag}
2424
buildah manifest create curl-multi:${release_tag}
2525

2626
# loop through supported arches
27-
for IMGTAG in "linux/386" "linux/arm/v7" "linux/amd64" "linux/arm64" "linux/ppc64le" ; do
27+
for IMGTAG in "amd64" "arm64" "arm" "ppc64le" "s390x" ; do
2828
pathname="${IMGTAG////-}"
2929
echo "building $IMGTAG : $pathname"
3030
./create_dev_image.sh "$IMGTAG" ${base} ${compiler} "$dev_deps" "$build_opts" ${branch_or_ref} curl-dev-${pathname}:${release_tag} 0

0 commit comments

Comments
 (0)