File tree Expand file tree Collapse file tree 9 files changed +13
-8
lines changed Expand file tree Collapse file tree 9 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 33
33
uses : actions/checkout@v3
34
34
- run : |
35
35
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
37
37
name: 'install dev deps'
38
38
- run : buildah unshare make branch_or_ref=master release_tag=master multibuild
39
39
name : ' build multi image'
Original file line number Diff line number Diff line change 40
40
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
41
41
- run : |
42
42
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
44
44
name: 'install dev deps'
45
45
- name : Sets env vars
46
46
run : |
Original file line number Diff line number Diff line change 43
43
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
44
44
- run : |
45
45
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
47
47
name: 'install dev deps'
48
48
- run : buildah unshare make branch_or_ref=master release_tag=master build_ref_images
49
49
name : ' build master images'
Original file line number Diff line number Diff line change 43
43
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
44
44
- run : |
45
45
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
47
47
name: 'install dev deps'
48
48
- run : buildah unshare make branch_or_ref=master release_tag=master build_debian
49
49
name : ' build debian dev image'
Original file line number Diff line number Diff line change 43
43
docker login -u ${{secrets.QUAY_USER}} -p ${{secrets.QUAY_TOKEN}} quay.io
44
44
- run : |
45
45
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
47
47
name: 'install dev deps'
48
48
- run : buildah unshare make branch_or_ref=master release_tag=master multibuild
49
49
name : ' build multi image'
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+ ## [ 8.12.0] - 2025-05-02
10
+ ### Changed
11
+ - bump to curl 8.12.0
12
+ - bump to alpine:3.21.2
13
+
9
14
## [ 8.11.1] - 2024-12-11
10
15
### Changed
11
16
- bump to curl 8.11.1
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ container_ids=`buildah ls --format "{{.ContainerID}}"`
5
5
# default setttings for official curl images
6
6
debian_base =docker.io/debian
7
7
fedora_base =docker.io/fedora
8
- base =docker.io/alpine:3.21.0
8
+ base =docker.io/alpine:3.21.2
9
9
arch =""
10
10
compiler ="gcc"
11
11
build_opts =" --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets -with-ssl --with-libssh2 --with-nghttp2=/usr --with-gssapi"
Original file line number Diff line number Diff line change 1
- 8.11.1
1
+ 8.12.0
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ buildah manifest create curl-base-multi:${release_tag}
24
24
buildah manifest create curl-multi:${release_tag}
25
25
26
26
# 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
28
28
pathname=" ${IMGTAG//// -} "
29
29
echo " building $IMGTAG : $pathname "
30
30
./create_dev_image.sh " $IMGTAG " ${base} ${compiler} " $dev_deps " " $build_opts " ${branch_or_ref} curl-dev-${pathname} :${release_tag} 0
You can’t perform that action at this time.
0 commit comments