FailedConsole 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/devel^{commit} # timeout=10
 > git branch -a -v --no-abbrev --contains 8acfaa09387ce33569f5aa18dc801db775eae702 # timeout=10
Checking out Revision 8acfaa09387ce33569f5aa18dc801db775eae702 (origin/devel)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 8acfaa09387ce33569f5aa18dc801db775eae702
Commit message: "Bug fixed in virtualization modules"
 > git rev-list --no-walk 46152ed226b8b98604a6f87b611f59e68b2d9dba # timeout=10
[NG112] $ /bin/bash /tmp/jenkins945001302091385935.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-dev
+ cd virtualization/docker-dev
./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/ng112_devel --force-rm  . || ( echo "Docker build failed: $?"; exit 1 )
+ docker build --no-cache --tag etsiforge/ng112_devel --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