Skip to content

Commit

Permalink
fix(build): linux build pending alpine fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blattersturm committed Dec 16, 2021
1 parent 786d4e0 commit 0758471
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/tools/ci/build_server_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ JOB_SLOTS=${JOB_SLOTS:-24}
# upgrade to edge (keep v3.12 for downgrades)
echo http://dl-cdn.alpinelinux.org/alpine/v3.12/main > /etc/apk/repositories
echo http://dl-cdn.alpinelinux.org/alpine/v3.14/main >> /etc/apk/repositories
echo http://dl-cdn.alpinelinux.org/alpine/v3.15/main >> /etc/apk/repositories
echo http://dl-cdn.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories
echo http://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories
echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
Expand Down Expand Up @@ -39,7 +40,8 @@ apk del curl
apk add --no-cache curl=7.72.0-r99 libssl1.1 libcrypto1.1 libunwind libstdc++ zlib c-ares v8 musl-dbg libatomic

# install compile-time dependencies
apk add --no-cache --virtual .dev-deps lld curl-dev=7.72.0-r99 clang clang-dev build-base linux-headers openssl1.1-compat-dev python2 python3 py3-pip py3-setuptools lua5.3 lua5.3-dev mono-reference-assemblies=5.16.1.0-r9991 mono-dev=5.16.1.0-r9991 libmono=5.16.1.0-r9991 mono-corlib=5.16.1.0-r9991 mono=5.16.1.0-r9991 mono-reference-assemblies-4.x=5.16.1.0-r9991 mono-reference-assemblies-facades=5.16.1.0-r9991 mono-csc=5.16.1.0-r9991 mono-runtime=5.16.1.0-r9991 c-ares-dev v8-dev nodejs~=12 nodejs-dev~=12 npm yarn clang-libs git cargo
# 3.9.7-r4 is a WORKAROUND for Alpine shipping broken py3-pip in 'edge' (as of 2021-12-16)
apk add --no-cache --virtual .dev-deps lld curl-dev=7.72.0-r99 clang clang-dev build-base linux-headers openssl1.1-compat-dev python2 python3=3.9.7-r4 py3-pip py3-setuptools lua5.3 lua5.3-dev mono-reference-assemblies=5.16.1.0-r9991 mono-dev=5.16.1.0-r9991 libmono=5.16.1.0-r9991 mono-corlib=5.16.1.0-r9991 mono=5.16.1.0-r9991 mono-reference-assemblies-4.x=5.16.1.0-r9991 mono-reference-assemblies-facades=5.16.1.0-r9991 mono-csc=5.16.1.0-r9991 mono-runtime=5.16.1.0-r9991 c-ares-dev v8-dev nodejs~=12 nodejs-dev~=12 npm yarn clang-libs git cargo

# install ply
python3 -m pip install ply
Expand Down

0 comments on commit 0758471

Please sign in to comment.