More attempts at fixing GitlabCI

See https://forum.gitlab.com/t/docker-dind-stops-working-after-12-1-0-update/28664/11
This commit is contained in:
Gioacchino Mazzurco 2023-11-27 01:33:19 +01:00
parent 3f40837b1c
commit 67762c1eb0
No known key found for this signature in database
GPG Key ID: A1FBCA3872E87051
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
image: docker:stable
image: docker:latest
services:
- docker:stable-dind
- docker:dind
stages:
- build
@ -18,6 +18,7 @@ variables:
build-ubuntu-test-image:
stage: build
script:
- docker --version
- >
docker login "$CI_REGISTRY"
--username "$CI_REGISTRY_USER"
@ -35,6 +36,7 @@ build-ubuntu-test-image:
test-ubuntu:
stage: test
script:
- docker --version
- >
docker login "$CI_REGISTRY"
--username "$CI_REGISTRY_USER"

View File

@ -58,5 +58,5 @@ RUN \
mkdir RetroShare-build && cd RetroShare-build && \
cmake -B. -S../RetroShare/retroshare-service \
-DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON -DRS_WEBUI=ON && \
make -j$(nproc) -j1 && make install && \
make -j$(nproc) && make install && \
cd .. && rm -rf RetroShare-build