Closed zephyrbot closed 7 years ago
by Genaro Saucedo Tejada:
original request made as gerrit review comment
This whole archiving script needs a full cleanup, so let's go one by one
06:09:37 Build step 'Execute shell' marked build as failure
06:09:37 [ssh-agent] Stopped.
06:09:37 Skipped archiving because build is not successful
06:09:37 [PostBuildScript] - Execution post build scripts.
06:09:37 [zephyr-verify] $ /bin/bash > /tmp/hudson7490976224545932071.sh
06:09:37 + set +e
# Capture the shell log of executing this to trace.log instead of
dumping everything to the console and making it more confusing
exec 199> trace.log
BASH_XTRACEFD=199
set -x
06:09:37 + ARCHIVES_DIR=vex-yul-zep-jenkins-2/zephyr-verify/126
06:09:37 + '[' '' ']'
06:09:37 + LOGS_SERVER=https://logs.zephyrproject.org
06:09:37 + '[' '' ']'
[ "$LOGS_SERVER" ] || LOGS_SERVER="https://logs.zephyrproject.org"
[ "$LOGS_REPO_URL" ] || LOGS_REPO_URL="https://nexus.zephyrproject.org/service/local/repositories/logs"
Either have this set in the environment or here, but not in both
places. I don't want them set here, because them every single script
has to duplicate this. They have to move to the environment setup location.
06:09:37 + LOGS_REPO_URL=https://nexus.zephyrproject.org/service/local/repositories/logs
06:09:37 + echo 'Build logs: <a href="https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126">https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126</a>'
06:09:37 Build logs: <a href="https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126">https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126</a>
06:09:37 + mkdir .archives
06:09:37 mkdir: cannot create directory ‘.archives’: File exists
this error is telling you the workspace is not being cleaned up before
starting; do so, otherwise we have stuff from the previous run.
06:09:37 + find -name '*.raw.log*' -exec cp '{}' /w/workspace/zephyr-verify/.archives/ ';' -ls
06:09:37 2363196 4 -rw-rw-r-- 1 jenkins jenkins 131 Jan 18 06:09 ./zephyr/check_commit_msg.raw.log.gz
06:09:37 2363193 4 -rw-rw-r-- 1 jenkins jenkins 111 Jan 18 06:09 ./zephyr/add_reviewers.raw.log.gz
06:09:37 2363598 4 -rw-rw-r-- 1 jenkins jenkins 117 Jan 18 06:09 ./.archives/vex-yul-zep-jenkins-2/zephyr-verify/119/checkpatch.raw.log.gz
06:09:37 2363601 4 -rw-rw-r-- 1 jenkins jenkins 45 Jan 18 06:09 ./.archives/vex-yul-zep-jenkins-2/zephyr-verify/119/check_commit_msg.raw.log.gz
06:09:37 2363602 4 -rw-rw-r-- 1 jenkins jenkins 804 Jan 18 06:09 ./.archives/vex-yul-zep-jenkins-2/zephyr-verify/119/doc_build_ci.raw.log.gz
06:09:37 2363603 4 -rw-rw-r-- 1 jenkins jenkins 111 Jan 18 06:09 ./.archives/vex-yul-zep-jenkins-2/zephyr-verify/119/add_reviewers.raw.log.gz
06:09:37 cp: ‘./.archives/checkpatch.raw.log.gz’ and ‘/w/workspace/zephyr-verify/.archives/checkpatch.raw.log.gz’ are the same file
06:09:37 cp: ‘./.archives/check_commit_msg.raw.log.gz’ and ‘/w/workspace/zephyr-verify/.archives/check_commit_msg.raw.log.gz’ are the same file
06:09:37 cp: ‘./.archives/doc_build_ci.raw.log.gz’ and ‘/w/workspace/zephyr-verify/.archives/doc_build_ci.raw.log.gz’ are the same file
06:09:37 cp: ‘./.archives/add_reviewers.raw.log.gz’ and ‘/w/workspace/zephyr-verify/.archives/add_reviewers.raw.log.gz’ are the same file
remove -ls from 'find', unnecessary output -- we will see what is put
there anyway because it is what is contained in the file; if you want
also can replace with:
find -print0 | xargs -0 cp {} .archives
which will show in the trace.log
add `-not -regex '.*/.archives/.*'` to avoid the 'are the same file' error.
missing the rest of the log files, error files, warning files, should be getting \*.log.gz
06:09:37 + cd .archives/
06:09:37 + cat
06:09:37 + mkdir -p vex-yul-zep-jenkins-2/zephyr-verify/126
06:09:37 + mkdir -p /w/workspace/zephyr-verify/archives
/
mkdir -p $ARCHIVES_DIR
In fact, just have $ARCHIVES_DIR created at the very beginning and
move the stuff there instead of to .archives
mkdir -p $WORKSPACE/archives
Why create another subdirectory? $WORKSPACE/archives is not used;
let's have that removed
06:09:38 + '[' '!' -z '' ']'
06:09:38 + mv /w/workspace/zephyr-verify/archives/ vex-yul-zep-jenkins-2/zephyr-verify/126
06:09:38 + touch vex-yul-zep-jenkins-2/zephyr-verify/126/_build-details.txt
06:09:38 + echo 'build-url: https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126/'
06:09:38 + env
06:09:38 + touch vex-yul-zep-jenkins-2/zephyr-verify/126/_sys-info.txt
06:09:38 + tee -a
vex-yul-zep-jenkins-2/zephyr-verify/126/_sys-info.txt
All this to be compacted:
06:09:38 ++ uname -a
06:09:38 + echo -e 'uname -a:\n Linux snd-ubuntu1404-basebuild-8c-8g-1587 3.13.0-83-generic <span>#</span>127-Ubuntu SMP Fri Mar 11 00:25:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux \n'
06:09:38 uname -a:
06:09:38 Linux snd-ubuntu1404-basebuild-8c-8g-1587 3.13.0-83-generic <span>#</span>127-Ubuntu SMP Fri Mar 11 00:25:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
06:09:38
06:09:38 ++ df -h
06:09:38 + echo -e 'df -h:\n Filesystem Size Used Avail Use% Mounted on
06:09:38 udev 3.9G 12K 3.9G 1% /dev
06:09:38 tmpfs 799M 352K 799M 1% /run
06:09:38 /dev/vda1 197G 4.4G 185G 3% /
06:09:38 none 4.0K 0 4.0K 0% /sys/fs/cgroup
06:09:38 none 5.0M 0 5.0M 0% /run/lock
06:09:38 none 3.9G 0 3.9G 0% /run/shm
06:09:38 none 100M 0 100M 0% /run/user \n'
06:09:38 df -h:
06:09:38 Filesystem Size Used Avail Use% Mounted on
06:09:38 udev 3.9G 12K 3.9G 1% /dev
06:09:38 tmpfs 799M 352K 799M 1% /run
06:09:38 /dev/vda1 197G 4.4G 185G 3% /
06:09:38 none 4.0K 0 4.0K 0% /sys/fs/cgroup
06:09:38 none 5.0M 0 5.0M 0% /run/lock
06:09:38 none 3.9G 0 3.9G 0% /run/shm
06:09:38 none 100M 0 100M 0% /run/user
06:09:38
06:09:38 ++ free -m
06:09:38 + echo -e 'free -m:\n total used free shared buffers cached
06:09:38 Mem: 7984 1018 6965 0 40 477
06:09:38 -/+ buffers/cache: 501 7483
06:09:38 Swap: 0 0 0 \n'
06:09:38 free -m:
06:09:38 total used free shared buffers cached
06:09:38 Mem: 7984 1018 6965 0 40 477
06:09:38 -/+ buffers/cache: 501 7483
06:09:38 Swap: 0 0 0
06:09:38
06:09:38 ++ nproc
06:09:38 + echo -e 'nproc:\n 8 \n'
06:09:38 nproc:
06:09:38 8
06:09:38
06:09:38 ++ lscpu
06:09:38 + echo -e 'lscpu:\n Architecture: x86_64
06:09:38 CPU op-mode(s): 32-bit, 64-bit
06:09:38 Byte Order: Little Endian
06:09:38 CPU(s): 8
06:09:38 On-line CPU(s) list: 0-7
06:09:38 Thread(s) per core: 1
06:09:38 Core(s) per socket: 1
06:09:38 Socket(s): 8
06:09:38 NUMA node(s): 1
06:09:38 Vendor ID: GenuineIntel
06:09:38 CPU family: 6
06:09:38 Model: 44
06:09:38 Stepping: 1
06:09:38 CPU MHz: 3058.998
06:09:38 BogoMIPS: 6117.99
06:09:38 Hypervisor vendor: KVM
06:09:38 Virtualization type: full
06:09:38 L1d cache: 32K
06:09:38 L1i cache: 32K
06:09:38 L2 cache: 4096K
06:09:38 NUMA node0 CPU(s): 0-7 \n'
06:09:38 lscpu:
06:09:38 Architecture: x86_64
06:09:38 CPU op-mode(s): 32-bit, 64-bit
06:09:38 Byte Order: Little Endian
06:09:38 CPU(s): 8
06:09:38 On-line CPU(s) list: 0-7
06:09:38 Thread(s) per core: 1
06:09:38 Core(s) per socket: 1
06:09:38 Socket(s): 8
06:09:38 NUMA node(s): 1
06:09:38 Vendor ID: GenuineIntel
06:09:38 CPU family: 6
06:09:38 Model: 44
06:09:38 Stepping: 1
06:09:38 CPU MHz: 3058.998
06:09:38 BogoMIPS: 6117.99
06:09:38 Hypervisor vendor: KVM
06:09:38 Virtualization type: full
06:09:38 L1d cache: 32K
06:09:38 L1i cache: 32K
06:09:38 L2 cache: 4096K
06:09:38 NUMA node0 CPU(s): 0-7
06:09:38
06:09:38 ++ /sbin/ip addr
06:09:38 + echo -e 'ip addr:\n 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
06:09:38 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
06:09:38 inet 127.0.0.1/8 scope host lo
06:09:38 valid_lft forever preferred_lft forever
06:09:38 inet6 ::1/128 scope host
06:09:38 valid_lft forever preferred_lft forever
06:09:38 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
06:09:38 link/ether fa:16:3e:af:be:c8 brd ff:ff:ff:ff:ff:ff
06:09:38 inet 10.30.56.103/23 brd 10.30.57.255 scope global eth0
06:09:38 valid_lft forever preferred_lft forever
06:09:38 inet6 fe80::f816:3eff:feaf:bec8/64 scope link
06:09:38 valid_lft forever preferred_lft forever \n'
06:09:38 ip addr:
06:09:38 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
06:09:38 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
06:09:38 inet 127.0.0.1/8 scope host lo
06:09:38 valid_lft forever preferred_lft forever
06:09:38 inet6 ::1/128 scope host
06:09:38 valid_lft forever preferred_lft forever
06:09:38 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
06:09:38 link/ether fa:16:3e:af:be:c8 brd ff:ff:ff:ff:ff:ff
06:09:38 inet 10.30.56.103/23 brd 10.30.57.255 scope global eth0
06:09:38 valid_lft forever preferred_lft forever
06:09:38 inet6 fe80::f816:3eff:feaf:bec8/64 scope link
06:09:38 valid_lft forever preferred_lft forever
06:09:38
env > $ARCHIVES_DIR/environment.txt
cat <<EOF > $ARCHIVES_DIR/build-detailed-information.txt
build-url: ${BUILD_URL}
uname -a:
`uname -a`
df -h:
`df -h`
free -m:
`free -m`
nproc:
`nproc`
lscpu:
`lscpu`
ip addr:
`/sbin/ip addr`
EOF
And nope, it shall not print to console, it is not always necessary
and polutes the output.
06:09:38 + echo -----END_OF_BUILD-----
06:09:38 -----END_OF_BUILD-----
kill this, no need to trim
06:09:38 + wget -O
vex-yul-zep-jenkins-2/zephyr-verify/126/console.log
https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126/consoleText
make it quiet and save log in case we need it.
-a $ARCHIVES_DIR/console_wget.log
06:09:38 --2017-01-18 06:09:38-- https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126/consoleText
06:09:38 Resolving jenkins.zephyrproject.org (jenkins.zephyrproject.org)... 199.19.213.246
06:09:38 Connecting to jenkins.zephyrproject.org (jenkins.zephyrproject.org)|199.19.213.246|:443... connected.
06:09:38 HTTP request sent, awaiting response... 200 OK
06:09:38 Length: unspecified [text/plain]
06:09:38 Saving to: ‘vex-yul-zep-jenkins-2/zephyr-verify/126/console.log’
06:09:38
06:09:38 0K .......... .. 21.9M=0.001s
06:09:38
06:09:38 2017-01-18 06:09:38 (21.9 MB/s) - ‘vex-yul-zep-jenkins-2/zephyr-verify/126/console.log’ saved [13201]
06:09:38
06:09:38 + wget -O vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log 'https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126//timestamps?time=HH:mm:ss&appendLog'
Ditto.
-a $ARCHIVES_DIR/console_wget.log
06:09:38 --2017-01-18 06:09:38-- https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126//timestamps?time=HH:mm:ss&appendLog
06:09:38 Resolving jenkins.zephyrproject.org (jenkins.zephyrproject.org)... 199.19.213.246
06:09:38 Connecting to jenkins.zephyrproject.org (jenkins.zephyrproject.org)|199.19.213.246|:443... connected.
06:09:38 HTTP request sent, awaiting response... 302 Found
06:09:38 Location: https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126/timestamps/?time=HH:mm:ss&appendLog [following]
06:09:38 --2017-01-18 06:09:38-- https://jenkins.zephyrproject.org/sandbox/job/zephyr-verify/126/timestamps/?time=HH:mm:ss&appendLog
06:09:38 Reusing existing connection to jenkins.zephyrproject.org:443.
06:09:38 HTTP request sent, awaiting response... 200 OK
06:09:38 Length: unspecified [text/plain]
06:09:38 Saving to: ‘vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log’
06:09:38
06:09:38 0K .......... ...... 17.8M=0.001s
06:09:38
06:09:38 2017-01-18 06:09:38 (17.8 MB/s) - ‘vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log’ saved [17178]
06:09:38
06:09:38 + sed -i '/^-----END_OF_BUILD-----$/,$d' vex-yul-zep-jenkins-2/zephyr-verify/126/console.log
06:09:38 + sed -i '/^.*-----END_OF_BUILD-----$/,$d'
vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log
No need to trim
06:09:38 + gzip vex-yul-zep-jenkins-2/zephyr-verify/126/_build-details.txt vex-yul-zep-jenkins-2/zephyr-verify/126/_build-enviroment-variables.txt vex-yul-zep-jenkins-2/zephyr-verify/126/_sys-info.txt vex-yul-zep-jenkins-2/zephyr-verify/126/console.log vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log
06:09:38 + find vex-yul-zep-jenkins-2/zephyr-verify/126 -type f -print0
06:09:38 + xargs -0r file
06:09:38 + egrep -e ':.*text.*'
06:09:38 + xargs '-d\n' -r gzip
06:09:38 + cut -d: -f1
This makes no sense it is compressing and then compressing again but
only if not text. As well, gzip won't re-compress something alredy
compressed.
Replace the whole thing with:
gzip -rq $ARCHIVE_DIR
06:09:38 + find /w/workspace/zephyr-verify/zephyr -name '*.raw.log.gz' -exec cp '{}' vex-yul-zep-jenkins-2/zephyr-verify/126/ ';' -ls
06:09:38 2363196 4 -rw-rw-r-- 1 jenkins jenkins 131 Jan 18 06:09 /w/workspace/zephyr-verify/zephyr/check_commit_msg.raw.log.gz
06:09:38 2363193 4 -rw-rw-r-- 1 jenkins jenkins 111 Jan
18 06:09 /w/workspace/zephyr-verify/zephyr/add_reviewers.raw.log.gz
find $WORKSPACE/zephyr -name '*.raw.log.gz' -exec cp {} $ARCHIVES_DIR/ \; -ls
Why? this was done before. Kill it.
06:09:38 + zip -r archives.zip vex-yul-zep-jenkins-2/
06:09:38 updating: vex-yul-zep-jenkins-2/ (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/ (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/ (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/_build-enviroment-variables.txt.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/archives/ (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/checkpatch.raw.log.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/_build-details.txt.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/check_commit_msg.raw.log.gz (deflated 11%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/console-timestamp.log.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/doc_build_ci.raw.log.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/add_reviewers.raw.log.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/_sys-info.txt.gz (stored 0%)
06:09:38 updating: vex-yul-zep-jenkins-2/zephyr-verify/119/console.log.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/ (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/_build-enviroment-variables.txt.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/archives/ (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/_build-details.txt.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/check_commit_msg.raw.log.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/console-timestamp.log.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/add_reviewers.raw.log.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/_sys-info.txt.gz (stored 0%)
06:09:38 adding: vex-yul-zep-jenkins-2/zephyr-verify/126/console.log.gz (stored 0%)
zip -r archives.zip $JENKINS_HOSTNAME/
Be consistent, replace with:
zip -r archives.zip $ARCHIVE_DIR/
06:09:38 + du -sh archives.zip
06:09:38 28K archives.zip
06:09:38 [mvn33] $ sh -e /w/tools/hudson.tasks.Maven_MavenInstallation/mvn33/hudson1235075110169514880.sh
06:09:38 Maven 3.3.9 already installed
06:09:38 using settings config with name jenkins-log-archive-settings
06:09:38 Replacing all maven server entries not found in credentials list is true
06:09:38 using global settings config with name global-settings
06:09:38 Replacing all maven server entries not found in credentials list is true
06:09:38 [zephyr-verify] $ /w/tools/hudson.tasks.Maven_MavenInstallation/apache-maven-3.3.9/bin/mvn -f .archives/deploy-archives.xml -s /tmp/settings3007791279495536458.xml -gs /tmp/global-settings6619303564078488433.xml -DGERRIT_BRANCH=master -DGERRIT_PATCHSET_REVISION=7b10b6b782d5386f6a7f76efe43727e367b5bd6d -DGERRIT_HOST=gerrit.zephyrproject.org -DGERRIT_CHANGE_OWNER_EMAIL=genaro.saucedo.tejada@intel.com -DGERRIT_CHANGE_URL=https://gerrit.zephyrproject.org/r/5475 -DGERRIT_PATCHSET_UPLOADER_EMAIL=genaro.saucedo.tejada@intel.com -DGERRIT_EVENT_TYPE=patchset-created -DGERRIT_PROJECT=zephyr -DGERRIT_CHANGE_NUMBER=5475 -DGERRIT_SCHEME=ssh '-DGERRIT_PATCHSET_UPLOADER=\"Genaro Saucedo Tejada\" <genaro.saucedo.tejada@intel.com>' -DGERRIT_PORT=29418 -DGERRIT_REFSPEC=refs/changes/75/5475/1 "-DGERRIT_PATCHSET_UPLOADER_NAME=Genaro Saucedo Tejada" '-DGERRIT_CHANGE_OWNER=\"Genaro Saucedo Tejada\" <genaro.saucedo.tejada@intel.com>' -DPROJECT=zephyr -DGERRIT_CHANGE_COMMIT_MESSAGE=RE9OVCBNRVJHRSAtICBicmVhayBzYW5pdHkgQU5EIGNoZWNrcGF0Y2gKCkNoYW5nZS1JZDogSWE2MThlY2U5MzE3Y2JjNjkxNDlhNTBlYjg3MjhjOWFjNjQ4MTczYjYKU2lnbmVkLW9mZi1ieTogR2VuYXJvIFNhdWNlZG8gVGVqYWRhIDxnZW5hcm8uc2F1Y2Vkby50ZWphZGFAaW50ZWwuY29tPgo= -DGERRIT_NAME=Primary -DGERRIT_TOPIC=ZEP-539 "-DGERRIT_CHANGE_SUBJECT=DONT MERGE - break sanity AND checkpatch" -DGERRIT_CHANGE_ID=Ia618ece9317cbc69149a50eb8728c9ac648173b6 -DGERRIT_EVENT_HASH=-364506643 -DGERRIT_VERSION= -DGERRIT_PATCHSET_NUMBER=1 "-DGERRIT_CHANGE_OWNER_NAME=Genaro Saucedo Tejada" clean deploy -V -B -q -Dmaven.repo.local=/tmp/r
06:09:38 Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T16:41:47+00:00)
06:09:38 Maven home: /w/tools/hudson.tasks.Maven_MavenInstallation/apache-maven-3.3.9
06:09:38 Java version: 1.7.0_121, vendor: Oracle Corporation
06:09:38 Java home: /usr/lib/jvm/java-7-openjdk-amd64/jre
06:09:38 Default locale: en_US, platform encoding: UTF-8
06:09:38 OS name: "linux", version: "3.13.0-83-generic", arch: "amd64", family: "unix"
06:09:40 [description-setter] Description set: Build logs: <a href="https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126">https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/126</a>
06:09:40 Notifying upstream projects of job completion
06:09:40 Finished: FAILURE
by Genaro Saucedo Tejada:
sample test job: https://logs.zephyrproject.org/sandbox/vex-yul-zep-jenkins-2/zephyr-verify/130
Blocks GH-76
Reported by Genaro Saucedo Tejada: [~inakypg] requested some changes to include-raw-deploy-archives.sh scrip.
Most changes are not functional but style related hence no requirement can be specified.
(Imported from Jira INF-80)