Compare commits

..

No commits in common. "adb1d62c0aba77045b088b6b4df8542324808c7b" and "8d0d6e9a5c2154073e8f3085147df1c7939fed75" have entirely different histories.

2 changed files with 8 additions and 12 deletions

View File

@ -11,9 +11,9 @@ variables:
build:
# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2
image: docker:23.0.2
image: docker:20.10.12
services:
- docker:23.0.2-dind
- docker:20.10.12-dind
stage: build
script:
- docker build -t $BUILT_IMAGE_TAG --no-cache .
@ -23,9 +23,9 @@ build:
- images.tar
push-gitlab-registry:
image: docker:23.0.2
image: docker:20.10.12
services:
- docker:23.0.2-dind
- docker:20.10.12-dind
stage: push
only:
- tags
@ -38,9 +38,9 @@ push-gitlab-registry:
- docker push $IMAGE_TAG:$CI_COMMIT_TAG
push-docker-hub-registry:
image: docker:23.0.2
image: docker:20.10.12
services:
- docker:23.0.2-dind
- docker:20.10.12-dind
stage: push
only:
- tags

View File

@ -1,9 +1,6 @@
# Alpine 3.17 provides OpenSSL 3.x+ instead of 1.1.x+ which Mumble currently uses.
# Alpine 3.16 provides OpenSSL 1.1.1t-r2 which causes SSL.c build error.
# see: https://github.com/mumble-voip/mumble/issues/5968
FROM alpine:3.15 as builder
FROM alpine:3 as builder
ARG VERSION=1.4.287
ARG VERSION=1.4.230
LABEL \
org.label-schema.vendor="Alexey Skobkin - skobkin-ru@ya.ru" \
@ -33,7 +30,6 @@ RUN \
mkdir build && \
cd build && \
# static build is currently unavailable
# see https://github.com/mumble-voip/mumble/issues/5693#issuecomment-1132069719
# -Dstatic=ON
cmake -Dclient=OFF -Ddbus=OFF -Dice=OFF -Dzeroconf=OFF .. && \
make -j $(nproc)