Console Output
Started by GitLab push by Yann Garcia
[EnvInject] - Loading node environment variables.
Building remotely on build.forge.etsi.org (docker) in workspace /home/jenkins/workspace/emergency-communications/NG112
using credential f9a9fd70-ea8b-4872-a9d5-d1fb1cf8123e
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url git@forge.etsi.org:emtel/NG112.git # timeout=10
Fetching upstream changes from git@forge.etsi.org:emtel/NG112.git
> git --version # timeout=10
using GIT_SSH to set credentials
> git fetch --tags --progress git@forge.etsi.org:emtel/NG112.git +refs/heads/*:refs/remotes/origin/*
> git rev-parse remotes/origin/ttf_t009^{commit} # timeout=10
> git branch -a -v --no-abbrev --contains 6dac741b06fb993aae733ed42b8fa33af8b6c9a4 # timeout=10
Checking out Revision 6dac741b06fb993aae733ed42b8fa33af8b6c9a4 (origin/ttf_t009)
> git config core.sparsecheckout # timeout=10
> git checkout -f 6dac741b06fb993aae733ed42b8fa33af8b6c9a4
Commit message: "Review virtualization process"
> git rev-list --no-walk dc3c9f7f2fb13d9297061f2c335664ceeaa79474 # timeout=10
[NG112] $ /bin/bash /tmp/jenkins723013636202116931.sh
#set -e
cd $(dirname $0)
dirname $0
++ dirname .jenkins.sh
+ cd .
run_dir=`pwd`
pwd
++ pwd
+ run_dir=/home/jenkins/workspace/emergency-communications/NG112
# Docker version 2
cd virtualization/docker
+ cd virtualization/docker
./build.sh #--force-stfubuntu
+ ./build.sh
# Force removing stfubuntu docker image
if [ "$1" == "--force-stfubuntu" ]; then
if [ -n `docker images -q stfubuntu` ]; then
docker rmi --force `docker images -q stfubuntu` || exit 1
fi
fi
+ '[' '' == --force-stfubuntu ']'
# Check and build stfubuntu image
if [ -z `docker images -q stfubuntu` ]; then
docker build --no-cache --tag stfubuntu:20.04 -f Dockerfile.stfubuntu --force-rm . || exit 1
fi
docker images -q stfubuntu
++ docker images -q stfubuntu
+ '[' -z 4bd2a5901559 ']'
docker build --no-cache --tag etsiforge/ttf_t009_ng112 --force-rm . || ( echo "Docker build failed: $?"; exit 1 )
+ docker build --no-cache --tag etsiforge/ttf_t009_ng112 --force-rm .
Sending build context to Docker daemon 25.09kB
Step 1/10 : FROM stfubuntu:20.04
pull access denied for stfubuntu, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
+ echo 'Docker build failed: 1'
Docker build failed: 1
+ exit 1
ret_code=`echo $?`
echo $?
++ echo 1
+ ret_code=1
if [ $ret_code != 0 ]
then
cd $run_dir
exit -1
fi
+ '[' 1 '!=' 0 ']'
+ cd /home/jenkins/workspace/emergency-communications/NG112
+ exit -1
Build step 'Execute shell' marked build as failure
Finished: FAILURE