mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-11-26 12:04:43 +01:00
Add support for Alpine 3.17 (#687)
This commit is contained in:
parent
25aa338f68
commit
9bc48add50
1
.github/workflows/monitor-php8.2.yml
vendored
1
.github/workflows/monitor-php8.2.yml
vendored
@ -15,6 +15,7 @@ jobs:
|
||||
distro:
|
||||
- alpine3.15
|
||||
- alpine3.16
|
||||
- alpine3.17
|
||||
- buster
|
||||
- bullseye
|
||||
name: Check on ${{ matrix.distro }}
|
||||
|
1
.github/workflows/test-extensions.yml
vendored
1
.github/workflows/test-extensions.yml
vendored
@ -72,6 +72,7 @@ jobs:
|
||||
- alpine3.14
|
||||
- alpine3.15
|
||||
- alpine3.16
|
||||
- alpine3.17
|
||||
- jessie
|
||||
- stretch
|
||||
- buster
|
||||
|
1
.github/workflows/test-recent-extensions.yml
vendored
1
.github/workflows/test-recent-extensions.yml
vendored
@ -47,6 +47,7 @@ jobs:
|
||||
- alpine3.14
|
||||
- alpine3.15
|
||||
- alpine3.16
|
||||
- alpine3.17
|
||||
- jessie
|
||||
- stretch
|
||||
- buster
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
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
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# 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
|
||||
#
|
||||
@ -1152,6 +1152,9 @@ buildRequiredPackageLists() {
|
||||
;;
|
||||
relay@alpine)
|
||||
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)
|
||||
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libstdc++"
|
||||
|
Loading…
Reference in New Issue
Block a user