Add support for Alpine 3.17 (#687)

pull/688/head 2.0.1
Michele Locati 2023-01-22 11:33:20 +01:00 committed by GitHub
parent 25aa338f68
commit 9bc48add50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 2 deletions

View File

@ -15,6 +15,7 @@ jobs:
distro: distro:
- alpine3.15 - alpine3.15
- alpine3.16 - alpine3.16
- alpine3.17
- buster - buster
- bullseye - bullseye
name: Check on ${{ matrix.distro }} name: Check on ${{ matrix.distro }}

View File

@ -72,6 +72,7 @@ jobs:
- alpine3.14 - alpine3.14
- alpine3.15 - alpine3.15
- alpine3.16 - alpine3.16
- alpine3.17
- jessie - jessie
- stretch - stretch
- buster - buster

View File

@ -47,6 +47,7 @@ jobs:
- alpine3.14 - alpine3.14
- alpine3.15 - alpine3.15
- alpine3.16 - alpine3.16
- alpine3.17
- jessie - jessie
- stretch - stretch
- buster - buster

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2018-2020 Michele Locati Copyright (c) 2018-2023 Michele Locati
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -2,7 +2,7 @@
# This script wraps docker-php-ext-install, properly configuring the system. # This script wraps docker-php-ext-install, properly configuring the system.
# #
# Copyright (c) Michele Locati, 2018-2021 # Copyright (c) Michele Locati, 2018-2023
# #
# Source: https://github.com/mlocati/docker-php-extension-installer # Source: https://github.com/mlocati/docker-php-extension-installer
# #
@ -1152,6 +1152,9 @@ buildRequiredPackageLists() {
;; ;;
relay@alpine) relay@alpine)
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent lz4-libs zstd-libs" buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent lz4-libs zstd-libs"
if test $DISTRO_MAJMIN_VERSION -ge 317; then
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libssl1.1"
fi
;; ;;
simdjson@alpine) simdjson@alpine)
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libstdc++" buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libstdc++"