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 7f5acfea86688a0324fb6f9c2d0d2de6c9479cd7 (refs/remotes/origin/STF525)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 7f5acfea86688a0324fb6f9c2d0d2de6c9479cd7
Commit message: "STF545: Add InnerAcRequest/Response support, UpperTester port for ITS-S"
 > git rev-list f5d1b6b0825a9300f0957cc738fc54ec609957f8 # timeout=10
[STF525_Auto_Interop] $ /bin/bash /tmp/jenkins2152131759855940681.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
 ---> ea4c82dcd15a
Step 2/10 : MAINTAINER ETSI STF 525
 ---> Using cache
 ---> ba89989ada82
Step 3/10 : LABEL description "STF525 Docker Image"
 ---> Using cache
 ---> dae2cab08aa8
Step 4/10 : ENV TERM linux
 ---> Using cache
 ---> 862d437817aa
Step 5/10 : ENV HOSTNAME docker-titan-STF525
 ---> Using cache
 ---> d716418e866c
Step 6/10 : ARG ssh_pub_key
 ---> Using cache
 ---> 95fb62cc5315
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
 ---> f53c94170bfa
Step 8/10 : USER etsi
 ---> Using cache
 ---> 27dc529e7aa6
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
 ---> 90e0ec8bad89
Step 10/10 : CMD /bin/bash
 ---> Using cache
 ---> 2823ca95ef2e
Successfully built 2823ca95ef2e
Successfully tagged stf525_its:latest
+ '[' 0 '!=' 0 ']'
+ docker image ls -a
REPOSITORY                 TAG                 IMAGE ID            CREATED             SIZE
stf525_its                 latest              2823ca95ef2e        23 hours ago        2.95GB
<none>                     <none>              90e0ec8bad89        23 hours ago        2.95GB
<none>                     <none>              27dc529e7aa6        23 hours ago        1.69GB
<none>                     <none>              f53c94170bfa        23 hours ago        1.69GB
<none>                     <none>              d716418e866c        24 hours ago        85.8MB
<none>                     <none>              dae2cab08aa8        24 hours ago        85.8MB
<none>                     <none>              ba89989ada82        24 hours ago        85.8MB
<none>                     <none>              95fb62cc5315        24 hours ago        85.8MB
<none>                     <none>              862d437817aa        24 hours ago        85.8MB
<none>                     <none>              b758aa7c3d43        26 hours ago        1.7GB
<none>                     <none>              ddb9767d9c77        26 hours ago        1.7GB
<none>                     <none>              aa5a1e5a03da        26 hours ago        1.7GB
<none>                     <none>              d5702f8bc815        26 hours ago        1.69GB
<none>                     <none>              942fa7526d74        26 hours ago        1.69GB
<none>                     <none>              60ea54ae02ec        26 hours ago        1.69GB
<none>                     <none>              9cc065a67f29        26 hours ago        1.69GB
<none>                     <none>              8f0d9ae8f918        26 hours ago        220MB
<none>                     <none>              02d8eacf418a        26 hours ago        85.8MB
<none>                     <none>              ac21fdd971c5        26 hours ago        85.8MB
<none>                     <none>              9fa6db53d3aa        26 hours ago        85.8MB
<none>                     <none>              99516185b383        26 hours ago        85.8MB
openapivalidator           latest              c6b0d4b8a4b9        42 hours ago        222MB
<none>                     <none>              554fcdc46e06        42 hours ago        222MB
<none>                     <none>              764bc5d4e7ff        42 hours ago        222MB
<none>                     <none>              692d4dcb0c92        42 hours ago        222MB
<none>                     <none>              3cf79c1aef61        42 hours ago        222MB
<none>                     <none>              0748ba355ad1        42 hours ago        222MB
<none>                     <none>              ceeb680ed4fb        42 hours ago        222MB
<none>                     <none>              0f2938b0d611        42 hours ago        222MB
<none>                     <none>              b352741119b6        42 hours ago        222MB
<none>                     <none>              81367680be11        42 hours ago        222MB
<none>                     <none>              fc46bfc0ca88        42 hours ago        222MB
<none>                     <none>              16516228bb7a        42 hours ago        222MB
<none>                     <none>              845b46c2c1dc        42 hours ago        222MB
<none>                     <none>              15b5c2a87a43        42 hours ago        222MB
<none>                     <none>              7871c2bfc3ea        42 hours ago        222MB
<none>                     <none>              cbc3149e2130        42 hours ago        220MB
<none>                     <none>              360ceb237df9        42 hours ago        212MB
<none>                     <none>              c9c3979202c1        42 hours ago        188MB
<none>                     <none>              6edcfc270195        42 hours ago        188MB
<none>                     <none>              f790ef185743        42 hours ago        173MB
<none>                     <none>              3dcde753af30        42 hours ago        157MB
<none>                     <none>              c2d720896593        42 hours ago        153MB
<none>                     <none>              82f7425307e6        42 hours ago        151MB
<none>                     <none>              a00125cd64f2        42 hours ago        150MB
<none>                     <none>              99af8b969755        42 hours ago        54.4MB
<none>                     <none>              95fda2dffd97        42 hours ago        40.7MB
<none>                     <none>              002ade640a14        42 hours ago        31.8MB
<none>                     <none>              9984393d4ab7        42 hours ago        8.68MB
<none>                     <none>              c93a8f8fceea        42 hours ago        5.13MB
<none>                     <none>              5aba9ace9175        42 hours ago        4.03MB
<none>                     <none>              9a72dd804e49        47 hours ago        217MB
<none>                     <none>              6c08dbf57209        47 hours ago        217MB
<none>                     <none>              359dcc804220        47 hours ago        217MB
<none>                     <none>              4469ae439fb4        47 hours ago        217MB
<none>                     <none>              e8705dbdcb3a        47 hours ago        217MB
<none>                     <none>              92a1fdd5a199        47 hours ago        217MB
<none>                     <none>              698533a52c4d        47 hours ago        217MB
ubuntu                     18.04               ea4c82dcd15a        7 days ago          85.8MB
<none>                     <none>              d7fb8cfc7500        2 weeks ago         234MB
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>              6d982f1afd9b        5 weeks ago         913MB
<none>                     <none>              e2ab5136a60c        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
alpine                     3.6                 94627dfbdf19        6 weeks ago         4.03MB
<none>                     <none>              29ad31d1c202        6 weeks ago         200MB
<none>                     <none>              9db65cf2aec4        6 weeks ago         200MB
<none>                     <none>              a1eabee0db8f        6 weeks ago         200MB
<none>                     <none>              fd01895b8e3f        6 weeks ago         200MB
<none>                     <none>              3787c503db7e        6 weeks ago         200MB
<none>                     <none>              75481933ad98        6 weeks ago         200MB
<none>                     <none>              5182e96772bf        2 months ago        200MB
<none>                     <none>              9181a86fdafd        3 months ago        217MB
<none>                     <none>              2767d2d28581        3 months ago        217MB
<none>                     <none>              1d7d15cf55cd        3 months ago        217MB
<none>                     <none>              ec8ef1060736        3 months ago        217MB
<none>                     <none>              defe9a4e85d9        3 months ago        217MB
<none>                     <none>              7f401be3fb9f        3 months ago        217MB
<none>                     <none>              a8e40231dcc5        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
<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
plantuml/plantuml-server   tomcat              805a4b03284f        4 months ago        729MB
<none>                     <none>              113a43faa138        4 months ago        81.2MB
<none>                     <none>              37eec16f1872        12 months ago       3.97MB
+ docker inspect stf525_its:latest
[
    {
        "Id": "sha256:2823ca95ef2eb6761fcf6e766f295ffc7a32d621d3476c630e93ed497217bc85",
        "RepoTags": [
            "stf525_its:latest"
        ],
        "RepoDigests": [],
        "Parent": "sha256:90e0ec8bad892b414ed653a9a396a33311f0c08aabd08d68c91cbf79dfaa1169",
        "Comment": "",
        "Created": "2018-10-25T08:55:53.666269539Z",
        "Container": "de735a5edf48cd29ee1fdad40d31f0159fa4d9855cd4991ce381dcd45a2f2a2e",
        "ContainerConfig": {
            "Hostname": "de735a5edf48",
            "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:90e0ec8bad892b414ed653a9a396a33311f0c08aabd08d68c91cbf79dfaa1169",
            "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:90e0ec8bad892b414ed653a9a396a33311f0c08aabd08d68c91cbf79dfaa1169",
            "Volumes": null,
            "WorkingDir": "",
            "Entrypoint": null,
            "OnBuild": [],
            "Labels": {
                "description": "STF525 Docker Image"
            }
        },
        "Architecture": "amd64",
        "Os": "linux",
        "Size": 2949833139,
        "VirtualSize": 2949833139,
        "GraphDriver": {
            "Data": null,
            "Name": "aufs"
        },
        "RootFS": {
            "Type": "layers",
            "Layers": [
                "sha256:102645f1cf722254bbfb7135b524db45fbbac400e79e4d54266c000a5f5bc400",
                "sha256:ae1f631f14b7667ca37dca207c631d64947c60d923995cf0d73ceb1b08c406bb",
                "sha256:2146d867acf390370d4d0c7b51951551e0e91fb600b69dbc8922d531b05b12bc",
                "sha256:76c033092e100f56899d7402823c5cb6ce345442b3382d7b240350ef4252187e",
                "sha256:c6c37716486bce3baccf0f0afc5d8b241698f9cfdc5507bbee05eb0ed7297e89",
                "sha256:bdd4afeadb21a4c55e152e35b7464c2f4446cc281c54d4566fce44a175b28201"
            ]
        }
    }
]
+ '[' 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