parent
25aa338f68
commit
9bc48add50
|
@ -15,6 +15,7 @@ jobs:
|
|||
distro:
|
||||
- alpine3.15
|
||||
- alpine3.16
|
||||
- alpine3.17
|
||||
- buster
|
||||
- bullseye
|
||||
name: Check on ${{ matrix.distro }}
|
||||
|
|
|
@ -72,6 +72,7 @@ jobs:
|
|||
- alpine3.14
|
||||
- alpine3.15
|
||||
- alpine3.16
|
||||
- alpine3.17
|
||||
- jessie
|
||||
- stretch
|
||||
- buster
|
||||
|
|
|
@ -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