SuccessConsole Output

Started by GitLab push by Yann Garcia
Building remotely on build.forge.etsi.org (docker) in workspace /home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://forge.etsi.org/gitlab/ITS/ITS.git # timeout=10
Fetching upstream changes from https://forge.etsi.org/gitlab/ITS/ITS.git
 > git --version # timeout=10
using GIT_SSH to set credentials 
 > git fetch --tags --progress https://forge.etsi.org/gitlab/ITS/ITS.git +refs/heads/*:refs/remotes/origin/*
skipping resolution of commit remotes/origin/STF525, since it originates from another repository
 > git rev-parse refs/remotes/origin/STF525^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/STF525^{commit} # timeout=10
Checking out Revision 117a4e97bd0099819fbc9714d87099da6ecee0e8 (refs/remotes/origin/STF525)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 117a4e97bd0099819fbc9714d87099da6ecee0e8
Commit message: "Implement EA test cases, clause 5.4.2 Enrolment response"
 > git rev-list cc7c4a607cf86070a67a59da5211b52823e2e7ae # timeout=10
[STF525_Auto_Interop] $ /bin/bash /tmp/jenkins1628782175466212022.sh
#set -e

cd $(dirname $0)
dirname $0
++ dirname .jenkins.sh
+ cd .

run_dir=`pwd`
pwd
++ pwd
+ run_dir='/home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop'

# Docker version 2
#cd docker/v2
#./build.sh
#./run.sh

# Docker version 1
cd docker
+ cd docker
./build-container.sh
+ ./build-container.sh

DOCKER_FILE=./Dockerfile
+ DOCKER_FILE=./Dockerfile
if [ -f ${DOCKER_FILE} ]
then
    docker build --tag stf525_its --force-rm .
    if [ "$?" != "0" ]
    then
        echo "Docker build failed: $?"
        exit -1
    fi
    docker image ls -a
    docker inspect stf525_its:latest
    if [ "$?" != "0" ]
    then
        echo "Docker inspect failed: $?"
        exit -1
    fi
else
    exit -2
fi
+ '[' -f ./Dockerfile ']'
+ docker build --tag stf525_its --force-rm .
Sending build context to Docker daemon  36.35kB

Step 1/10 : FROM ubuntu:18.04
 ---> 113a43faa138
Step 2/10 : MAINTAINER ETSI STF 525
 ---> Using cache
 ---> 35335fa56144
Step 3/10 : LABEL description "STF525 Docker Image"
 ---> Using cache
 ---> 3421a6bf6abe
Step 4/10 : ENV TERM linux
 ---> Using cache
 ---> 5e4139ec701d
Step 5/10 : ENV HOSTNAME docker-titan-STF525
 ---> Using cache
 ---> 621ad0cf0adc
Step 6/10 : ARG ssh_pub_key
 ---> Using cache
 ---> 3323fd1fbcec
Step 7/10 : RUN echo "docker-titan-STF525" > /etc/hostname     && DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade -y     && DEBIAN_FRONTEND=noninteractive apt-get install software-properties-common -y     && DEBIAN_FRONTEND=noninteractive add-apt-repository ppa:linuxuprising/java -y     && DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get --allow-unauthenticated install -y       autoconf       bison       build-essential       cmake       curl       dos2unix       doxygen       emacs       expect       flex       g++-8       gcc-8       gdb       git-core       gnutls-bin       graphviz       libglib2.0-dev       libpcap-dev       libgcrypt-dev       libncurses5-dev       libssl-dev       libtool-bin       libtool       libwireshark-dev       libxml2-dev       lsof       ntp       openssh-server       pkg-config       qt5-default       qttools5-dev       qtmultimedia5-dev       libqt5svg5-dev       subversion       sudo       sshpass       tcpdump       texlive-font-utils       tshark       tzdata       valgrind       vim       vsftpd       xutils-dev       tree       unzip       wget       xsltproc     && DEBIAN_FRONTEND=noninteractive apt-get autoremove --purge -y     && DEBIAN_FRONTEND=noninteractive apt-get autoclean     && useradd --create-home --shell /bin/bash --user-group etsi --groups sudo     && echo "etsi:etsi" | chpasswd     && adduser etsi sudo     && cd /home/etsi     && echo "" >> /home/etsi/.bashrc     && echo "export HOME=/home/etsi" >> /home/etsi/.bashrc     && echo "export LD_LIBRARY_PATH=/home/etsi/dev/etsi_its/lib:$LD_LIBRARY_PATH" >> /home/etsi/.bashrc     && echo "export PATH=/home/etsi/bin:$PATH" >> /home/etsi/.bashrc     && echo "cd /home/etsi" >> /home/etsi/.bashrc     && echo ". ./devenv.bash" >> /home/etsi/.bashrc     && . /home/etsi/.bashrc     && mkdir -p bin lib include tmp frameworks docs man dev     && chown etsi:etsi bin lib include tmp frameworks docs man dev     && echo "etsi ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
 ---> Using cache
 ---> 5b3ba2978e53
Step 8/10 : USER etsi
 ---> Using cache
 ---> c670dc916eac
Step 9/10 : RUN cd /home/etsi/dev     && git clone -b STF525 --recurse-submodules https://forge.etsi.org/gitlab/ITS/ITS.git ./STF525_Its     && cd /home/etsi/dev/STF525_Its/scripts     && chmod 775 *.bash devenv.bash.*     && cd /home/etsi     && ln -sf /home/etsi/dev/STF525_Its/scripts/devenv.bash.ubuntu /home/etsi/devenv.bash     && ls -ltr /home/etsi     && export HOME=/home/etsi     && cd /home/etsi/frameworks     && git clone https://github.com/vlm/asn1c.git asn1c     && cd asn1c     && test -f configure || autoreconf -iv     && ./configure     && make && sudo make install     && cd /home/etsi/frameworks     && wget 'http://ftp.halifax.rwth-aachen.de/eclipse//technology/epp/downloads/release/oxygen/2/eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz' -Oeclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && tar -zxvf ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && rm -f ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && . /home/etsi/devenv.bash     && cd /home/etsi/dev/STF525_Its/scripts     && ./build_titan.bash     && . /home/etsi/devenv.bash     && ./update_its_project.bash     && cd ${HOME}/dev/etsi_its/src/TestCodec/objs     && ../bin/testcodec_generate_makefile.bash     && ../bin/run_all.bash
 ---> Using cache
 ---> 9fe54b397e5e
Step 10/10 : CMD /bin/bash
 ---> Using cache
 ---> 3223cbe8af56
Successfully built 3223cbe8af56
Successfully tagged stf525_its:latest
+ '[' 0 '!=' 0 ']'
+ docker image ls -a
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
<none>                      <none>              d7fb8cfc7500        12 days ago         234MB
stf525_its                  latest              3223cbe8af56        12 days ago         2.94GB
<none>                      <none>              9fe54b397e5e        12 days ago         2.94GB
<none>                      <none>              c670dc916eac        13 days ago         1.75GB
<none>                      <none>              5b3ba2978e53        13 days ago         1.75GB
<none>                      <none>              35335fa56144        2 weeks ago         81.2MB
<none>                      <none>              5e4139ec701d        2 weeks ago         81.2MB
<none>                      <none>              621ad0cf0adc        2 weeks ago         81.2MB
<none>                      <none>              3323fd1fbcec        2 weeks ago         81.2MB
<none>                      <none>              3421a6bf6abe        2 weeks ago         81.2MB
titan-bin                   latest              b7a695f339aa        5 weeks ago         913MB
<none>                      <none>              645d27e043d4        5 weeks ago         913MB
<none>                      <none>              1f1480ce6e99        5 weeks ago         913MB
<none>                      <none>              fa322eb88f98        5 weeks ago         913MB
<none>                      <none>              e2ab5136a60c        5 weeks ago         913MB
<none>                      <none>              6d982f1afd9b        5 weeks ago         913MB
<none>                      <none>              a8845b9bbf4c        5 weeks ago         913MB
<none>                      <none>              4aaf05ed1dd6        5 weeks ago         813MB
<none>                      <none>              674792b53145        5 weeks ago         813MB
<none>                      <none>              c0400b683205        5 weeks ago         789MB
<none>                      <none>              4fcdc6b7dee9        5 weeks ago         679MB
<none>                      <none>              a9dd9a97e097        5 weeks ago         293MB
stfubuntu                   18.04               4303c305dc02        5 weeks ago         2.58GB
<none>                      <none>              5b0de2cde5a8        5 weeks ago         2.58GB
<none>                      <none>              228d9e932829        5 weeks ago         81.2MB
<none>                      <none>              c49d8d53e618        5 weeks ago         81.2MB
<none>                      <none>              cd19e067533f        5 weeks ago         81.2MB
<none>                      <none>              fd01895b8e3f        5 weeks ago         200MB
<none>                      <none>              a1eabee0db8f        5 weeks ago         200MB
<none>                      <none>              9db65cf2aec4        5 weeks ago         200MB
<none>                      <none>              29ad31d1c202        5 weeks ago         200MB
<none>                      <none>              75481933ad98        5 weeks ago         200MB
<none>                      <none>              3787c503db7e        5 weeks ago         200MB
testtitanimg                latest              2afd7fe8dba2        5 weeks ago         707MB
forge-pyang                 latest              ebb9baef19b5        2 months ago        460MB
<none>                      <none>              0cae6ee851fb        2 months ago        460MB
<none>                      <none>              38efd4e2d6c6        2 months ago        460MB
<none>                      <none>              48eb82e99821        2 months ago        453MB
<none>                      <none>              e9163cd6dda2        2 months ago        363MB
<none>                      <none>              26933bfba23f        2 months ago        363MB
<none>                      <none>              1b798fa17a01        2 months ago        363MB
<none>                      <none>              c57d053220ac        2 months ago        347MB
<none>                      <none>              99099ab48f6d        2 months ago        313MB
nfv-sol6                    1.0                 f9d1b74c1d21        2 months ago        245MB
nfv-sol6                    latest              f9d1b74c1d21        2 months ago        245MB
<none>                      <none>              7cf9fd96744d        2 months ago        245MB
<none>                      <none>              614efde16e19        2 months ago        228MB
<none>                      <none>              390dff67807d        2 months ago        218MB
centos                      7                   5182e96772bf        2 months ago        200MB
<none>                      <none>              9181a86fdafd        3 months ago        217MB
openapivalidator            latest              2767d2d28581        3 months ago        217MB
<none>                      <none>              ec8ef1060736        3 months ago        217MB
<none>                      <none>              1d7d15cf55cd        3 months ago        217MB
<none>                      <none>              a8e40231dcc5        3 months ago        217MB
<none>                      <none>              7f401be3fb9f        3 months ago        217MB
<none>                      <none>              defe9a4e85d9        3 months ago        217MB
<none>                      <none>              46618e25b412        3 months ago        217MB
<none>                      <none>              dfcffa881097        3 months ago        216MB
<none>                      <none>              84533e5860c9        3 months ago        208MB
<none>                      <none>              de36501403e3        3 months ago        187MB
<none>                      <none>              81a898805c9f        3 months ago        187MB
<none>                      <none>              8b9cff333db2        3 months ago        173MB
<none>                      <none>              bff5534325c4        3 months ago        156MB
<none>                      <none>              6b46498081cd        3 months ago        153MB
<none>                      <none>              ca2ccaf56683        3 months ago        151MB
<none>                      <none>              d7e1e0714341        3 months ago        150MB
<none>                      <none>              07b91e8b8e53        3 months ago        54.3MB
<none>                      <none>              615f95d9bef2        3 months ago        40.7MB
<none>                      <none>              9644a010beb6        3 months ago        31.8MB
<none>                      <none>              ddd536927392        3 months ago        8.61MB
<none>                      <none>              e4bc3bfd196d        3 months ago        5.07MB
<none>                      <none>              118f86344fe4        3 months ago        3.97MB
eclipsetitan/titan-alpine   latest              ffab5eebc9bc        3 months ago        707MB
stf549_ng112                latest              b392942d8013        3 months ago        2.88GB
<none>                      <none>              1aa28253a6d1        3 months ago        2.88GB
<none>                      <none>              88b6c0afb3d4        3 months ago        1.65GB
<none>                      <none>              fdb32df6766c        3 months ago        1.65GB
<none>                      <none>              1106147ea781        3 months ago        81.2MB
<none>                      <none>              09a11c672992        3 months ago        81.2MB
<none>                      <none>              44bfef0f3992        3 months ago        81.2MB
<none>                      <none>              4905aa1f1ba2        3 months ago        81.2MB
alpine                      3.8                 11cd0b38bc3c        3 months ago        4.41MB
plantuml/plantuml-server    tomcat              805a4b03284f        3 months ago        729MB
ubuntu                      18.04               113a43faa138        4 months ago        81.2MB
alpine                      3.6                 37eec16f1872        12 months ago       3.97MB
+ docker inspect stf525_its:latest
[
    {
        "Id": "sha256:3223cbe8af56cd45a029414af3b95e394927635f7b72bc583d40e5b87c7c4cc8",
        "RepoTags": [
            "stf525_its:latest"
        ],
        "RepoDigests": [],
        "Parent": "sha256:9fe54b397e5eeb6783cc0105604999db272e2d1b3dfe2d4fee28fd581a1fac00",
        "Comment": "",
        "Created": "2018-10-10T13:28:26.450321384Z",
        "Container": "825ab02b60b1c20304201dae116225198082abbd2f46586f10a0f4225b3d976f",
        "ContainerConfig": {
            "Hostname": "825ab02b60b1",
            "Domainname": "",
            "User": "etsi",
            "AttachStdin": false,
            "AttachStdout": false,
            "AttachStderr": false,
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": [
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "TERM=linux",
                "HOSTNAME=docker-titan-STF525"
            ],
            "Cmd": [
                "/bin/sh",
                "-c",
                "#(nop) ",
                "CMD [\"/bin/bash\"]"
            ],
            "ArgsEscaped": true,
            "Image": "sha256:9fe54b397e5eeb6783cc0105604999db272e2d1b3dfe2d4fee28fd581a1fac00",
            "Volumes": null,
            "WorkingDir": "",
            "Entrypoint": null,
            "OnBuild": [],
            "Labels": {
                "description": "STF525 Docker Image"
            }
        },
        "DockerVersion": "17.06.2-ce",
        "Author": "ETSI STF 525",
        "Config": {
            "Hostname": "",
            "Domainname": "",
            "User": "etsi",
            "AttachStdin": false,
            "AttachStdout": false,
            "AttachStderr": false,
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": [
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "TERM=linux",
                "HOSTNAME=docker-titan-STF525"
            ],
            "Cmd": [
                "/bin/bash"
            ],
            "ArgsEscaped": true,
            "Image": "sha256:9fe54b397e5eeb6783cc0105604999db272e2d1b3dfe2d4fee28fd581a1fac00",
            "Volumes": null,
            "WorkingDir": "",
            "Entrypoint": null,
            "OnBuild": [],
            "Labels": {
                "description": "STF525 Docker Image"
            }
        },
        "Architecture": "amd64",
        "Os": "linux",
        "Size": 2939705180,
        "VirtualSize": 2939705180,
        "GraphDriver": {
            "Data": null,
            "Name": "aufs"
        },
        "RootFS": {
            "Type": "layers",
            "Layers": [
                "sha256:db9476e6d963ed2b6042abef1c354223148cdcdbd6c7416c71a019ebcaea0edb",
                "sha256:3a89e0d8654e098e949764b1cb23018e27f299b0931c5fd41c207d610ff356c4",
                "sha256:904d60939c360b5f528b886c1b534855a008f9a7fd411d4977e09aa7de74c834",
                "sha256:a20a262b87bd8a00717f3b30c001bcdaf0fd85d049e6d10500597caa29c013c5",
                "sha256:b6f13d447e00fba3b9bd10c1e5c6697e913462f44aa24af349bfaea2054e32f4",
                "sha256:30249bd498a8555e1777130f97950cef170f240490f5c323e61409b915830e56",
                "sha256:3dbcba7677e9ec9e7aec90068e476142e5ab8f055017e974043d21c5e2707cfd"
            ]
        }
    }
]
+ '[' 0 '!=' 0 ']'

# That's all Floks
exit 0
+ exit 0
./run-container.sh $run_dir
+ ./run-container.sh /home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop

docker run -i --rm stf525_its:latest /bin/bash #-c "sudo etsi"
+ docker run -i --rm stf525_its:latest /bin/bash

# That's all Floks
exit 0
+ exit 0
Finished: SUCCESS