Running with gitlab-runner 13.5.0 (ece86343)
  on Nexus Runner LNj6NJoi
section_start:1606226482:resolve_secrets
Resolving secrets
section_end:1606226482:resolve_secrets
section_start:1606226482:prepare_executor
Preparing the "docker" executor
Using Docker executor with image docker:19.03.8 ...
Starting service docker:19.03.8-dind ...
Pulling docker image docker:19.03.8-dind ...
Using docker image sha256:c814ba3a41a3de0a9a23b7d0bb36f64257b12aef5103b4ce1d5f1bfc3033aad3 for docker:19.03.8-dind with digest docker@sha256:841b5eb000551dc3c30a46386ab4bfed5839ec9592c88e961236b25194ce88b9 ...
Waiting for services to be up and running...

*** WARNING: Service runner-lnj6njoi-project-73-concurrent-0-123c4393022049b5-docker-0 probably didn't start properly.

Health check error:
service "runner-lnj6njoi-project-73-concurrent-0-123c4393022049b5-docker-0-wait-for-service" timeout

Health check container logs:


Service container logs:
2020-11-24T14:01:26.387147151Z Generating RSA private key, 4096 bit long modulus (2 primes)
2020-11-24T14:01:26.708967504Z ........................................................................................++++
2020-11-24T14:01:26.757952841Z ............++++
2020-11-24T14:01:26.758245404Z e is 65537 (0x010001)
2020-11-24T14:01:26.772846739Z Generating RSA private key, 4096 bit long modulus (2 primes)
2020-11-24T14:01:26.962378990Z .................................................++++
2020-11-24T14:01:27.163636825Z .....................................................++++
2020-11-24T14:01:27.164002698Z e is 65537 (0x010001)
2020-11-24T14:01:27.198086365Z Signature ok
2020-11-24T14:01:27.198112384Z subject=CN = docker:dind server
2020-11-24T14:01:27.198300559Z Getting CA Private Key
2020-11-24T14:01:27.215729899Z /certs/server/cert.pem: OK
2020-11-24T14:01:27.219612497Z Generating RSA private key, 4096 bit long modulus (2 primes)
2020-11-24T14:01:27.365373303Z ......................................++++
2020-11-24T14:01:27.613214746Z ..................................................................++++
2020-11-24T14:01:27.613522090Z e is 65537 (0x010001)
2020-11-24T14:01:27.639020365Z Signature ok
2020-11-24T14:01:27.639051151Z subject=CN = docker:dind client
2020-11-24T14:01:27.639078061Z Getting CA Private Key
2020-11-24T14:01:27.651035870Z /certs/client/cert.pem: OK
2020-11-24T14:01:27.654555844Z mount: permission denied (are you root?)
2020-11-24T14:01:27.654686923Z Could not mount /sys/kernel/security.
2020-11-24T14:01:27.654694178Z AppArmor detection and --privileged mode might break.
2020-11-24T14:01:27.655836673Z mount: permission denied (are you root?)

*********

Pulling docker image docker:19.03.8 ...
Using docker image sha256:5cfd4d13e0a8e4b9681447772c9df4864ac5d935abced4535f2ff670a73f2939 for docker:19.03.8 with digest docker@sha256:8c119115801ae96e1f55b2ccb69cc84537c79eea057a00f363df0196f3d09fd4 ...
section_end:1606226519:prepare_executor
section_start:1606226519:prepare_script
Preparing environment
Running on runner-lnj6njoi-project-73-concurrent-0 via ubuntu...
section_end:1606226520:prepare_script
section_start:1606226520:get_sources
Getting source from Git repository
Fetching changes with git depth set to 50...
Reinitialized existing Git repository in /builds/pub/nexus-release-image/.git/
Checking out ee9fbaec as master...

Skipping Git submodules setup
section_end:1606226521:get_sources
section_start:1606226521:step_script
Executing "step_script" stage of the job script
$ docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded
$ docker build --build-arg DOCKER_VERSION="$DOCKER_VERSION" --tag "$BUILD_IMAGE_NAME" --tag "$BUILD_IMAGE_NAME_LATEST" .
Sending build context to Docker daemon  129.5kB

Step 1/14 : FROM node:14-buster-slim
 ---> afba96fee3b3
Step 2/14 : RUN apt-get update && apt-get install -y --no-install-recommends git-core ca-certificates openssh-client     && apt-get clean     && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 728bf994c647
Step 3/14 : RUN npm i -g standard-version
 ---> Using cache
 ---> f8d20eeea2ce
Step 4/14 : USER node
 ---> Using cache
 ---> 33ceb39473d6
Step 5/14 : RUN git config --global user.email "ci-versioning@nexusmods.com"
 ---> Using cache
 ---> 6df539e21de3
Step 6/14 : RUN git config --global user.name "git"
 ---> Using cache
 ---> 096c7a0941d6
Step 7/14 : RUN which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )
 ---> Using cache
 ---> fc02316054e7
Step 8/14 : RUN eval $(ssh-agent -s)
 ---> Using cache
 ---> 7c0ab407b004
Step 9/14 : RUN mkdir -p ~/.ssh
 ---> Using cache
 ---> bbcbbf79ae70
Step 10/14 : RUN chmod 700 ~/.ssh
 ---> Using cache
 ---> 9510ff31527d
Step 11/14 : RUN touch ~/.ssh/known_hosts
 ---> Using cache
 ---> 240cf6046f4d
Step 12/14 : RUN chmod 644 ~/.ssh/known_hosts
 ---> Using cache
 ---> a02196721112
Step 13/14 : COPY src/ build/
 ---> Using cache
 ---> af4e423b4f7c
Step 14/14 : CMD ["/build/release.sh"]
 ---> Using cache
 ---> ee3728cf02d2
[Warning] One or more build-args [DOCKER_VERSION] were not consumed
Successfully built ee3728cf02d2
Successfully tagged gitlab.nexdev.uk:5555/pub/nexus-release-image/master:ee9fbaecd61c26b71ac59e7b889bdaf24332beb4
Successfully tagged gitlab.nexdev.uk:5555/pub/nexus-release-image/master:latest
$ docker push "$BUILD_IMAGE_NAME"
The push refers to repository [gitlab.nexdev.uk:5555/pub/nexus-release-image/master]
10210804a4a5: Preparing
8eff7413ffb4: Preparing
8eff7413ffb4: Preparing
ee8987fc85c8: Preparing
92cec3b6fc22: Preparing
14316985a2b6: Preparing
e788aeac4da1: Preparing
066323174a24: Preparing
28d9ad0fd8bb: Preparing
541cf1eb31c0: Preparing
26b7ac286291: Preparing
e1305dd29c7e: Preparing
8896cb5c1bea: Preparing
9bf846dee90d: Preparing
f5600c6330da: Preparing
28d9ad0fd8bb: Waiting
541cf1eb31c0: Waiting
26b7ac286291: Waiting
e1305dd29c7e: Waiting
8896cb5c1bea: Waiting
9bf846dee90d: Waiting
f5600c6330da: Waiting
e788aeac4da1: Waiting
066323174a24: Waiting
14316985a2b6: Layer already exists
92cec3b6fc22: Layer already exists
ee8987fc85c8: Layer already exists
8eff7413ffb4: Layer already exists
28d9ad0fd8bb: Layer already exists
e788aeac4da1: Layer already exists
541cf1eb31c0: Layer already exists
066323174a24: Layer already exists
9bf846dee90d: Layer already exists
26b7ac286291: Layer already exists
e1305dd29c7e: Layer already exists
8896cb5c1bea: Layer already exists
f5600c6330da: Layer already exists
10210804a4a5: Mounted from pub/nexus-release-image/8-configure-changelog-templates-to-use-g
ee9fbaecd61c26b71ac59e7b889bdaf24332beb4: digest: sha256:cc0b3d346d37a6c790827e0d5271c249b680b22d61a5c4feea338e8b304da3c0 size: 3447
$ docker push "$BUILD_IMAGE_NAME_LATEST"
The push refers to repository [gitlab.nexdev.uk:5555/pub/nexus-release-image/master]
10210804a4a5: Preparing
8eff7413ffb4: Preparing
8eff7413ffb4: Preparing
ee8987fc85c8: Preparing
92cec3b6fc22: Preparing
14316985a2b6: Preparing
e788aeac4da1: Preparing
066323174a24: Preparing
28d9ad0fd8bb: Preparing
541cf1eb31c0: Preparing
e788aeac4da1: Waiting
066323174a24: Waiting
28d9ad0fd8bb: Waiting
541cf1eb31c0: Waiting
26b7ac286291: Preparing
e1305dd29c7e: Preparing
8896cb5c1bea: Preparing
9bf846dee90d: Preparing
f5600c6330da: Preparing
26b7ac286291: Waiting
8896cb5c1bea: Waiting
e1305dd29c7e: Waiting
f5600c6330da: Waiting
ee8987fc85c8: Layer already exists
14316985a2b6: Layer already exists
e788aeac4da1: Layer already exists
92cec3b6fc22: Layer already exists
8eff7413ffb4: Layer already exists
10210804a4a5: Layer already exists
066323174a24: Layer already exists
28d9ad0fd8bb: Layer already exists
26b7ac286291: Layer already exists
e1305dd29c7e: Layer already exists
541cf1eb31c0: Layer already exists
9bf846dee90d: Layer already exists
8896cb5c1bea: Layer already exists
f5600c6330da: Layer already exists
latest: digest: sha256:cc0b3d346d37a6c790827e0d5271c249b680b22d61a5c4feea338e8b304da3c0 size: 3447
section_end:1606226523:step_script
section_start:1606226523:cleanup_file_variables
Cleaning up file based variables
section_end:1606226523:cleanup_file_variables
Job succeeded