mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
b9d7d8d9ab
* Bump alpine from 3.18.5 to 3.19.0 Bumps alpine from 3.18.5 to 3.19.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update to php 8.3 * Revert to php82 because it's the default version in alpine 3.19.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marco Ferrari <ferrari.marco@gmail.com>
56 lines
1.8 KiB
Bash
Executable file
56 lines
1.8 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
case $TARGETARCH in
|
|
amd64)
|
|
target=x86_64
|
|
;;
|
|
arm64)
|
|
target=aarch64
|
|
;;
|
|
*)
|
|
echo "$TARGETARCH is not supported"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
apk add curl jq
|
|
url=$(curl -s \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "Authorization: Bearer $(cat /run/secrets/GITHUB_TOKEN)" \
|
|
"https://api.github.com/repos/sgerrand/alpine-pkg-glibc/releases/tags/${GLIBC_VERSION}" |
|
|
jq --arg name "glibc-${GLIBC_VERSION}.apk" -r '.assets | .[] | select(.name | contains($name)) | .url')
|
|
curl --retry 5 --retry-delay 5 -sL -o "glibc-${GLIBC_VERSION}.apk" \
|
|
-H "Accept: application/octet-stream" \
|
|
-H "Authorization: Bearer $(cat /run/secrets/GITHUB_TOKEN)" \
|
|
"${url}"
|
|
apk add --no-cache --force-overwrite \
|
|
bash \
|
|
ca-certificates \
|
|
"glibc-${GLIBC_VERSION}.apk" \
|
|
gnupg \
|
|
php82 php82-curl php82-ctype php82-dom php82-iconv php82-mbstring \
|
|
php82-openssl php82-phar php82-simplexml php82-tokenizer php82-xmlwriter \
|
|
tar zstd
|
|
rm "glibc-${GLIBC_VERSION}.apk"
|
|
mkdir /tmp/libz
|
|
curl --retry 5 --retry-delay 5 -sL https://www.archlinux.org/packages/core/${target}/zlib/download | tar -x --zstd -C /tmp/libz
|
|
mv /tmp/libz/usr/lib/libz.so* /usr/glibc-compat/lib
|
|
rm -rf /tmp/libz
|
|
curl --retry 5 --retry-delay 5 -sLO https://phar.io/releases/phive.phar
|
|
curl --retry 5 --retry-delay 5 -sLO https://phar.io/releases/phive.phar.asc
|
|
gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys "0x9D8A98B29B2D5D79"
|
|
gpg --verify phive.phar.asc phive.phar
|
|
chmod +x phive.phar
|
|
mv phive.phar /usr/local/bin/phive
|
|
rm phive.phar.asc
|
|
|
|
# Install PHARs
|
|
phive --no-progress install \
|
|
--trust-gpg-keys 31C7E470E2138192,CF1A108D0E7AE720,8A03EA3B385DBAA1,12CE0F1D262429A5,5E6DDE998AB73B8E,51C67305FFC2E5C0 \
|
|
--target /usr/bin \
|
|
phpstan@^1.10.48 \
|
|
psalm@^5.17.0 \
|
|
phpcs@^3.8.0
|