Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 9c96c3f

Browse files
committed
crops dockerfile: add pkgs for unittest and xmlrunner
Signed-off-by: Olev Kartau <olev.kartau@intel.com>
1 parent 1c2994b commit 9c96c3f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ try {
7373
params = ["${script_env}", "docker/pre-build.sh"].join("\n")
7474
stage('Pre-build tests') {
7575
sh "${params}"
76-
summary += sh(returnStdout: true,
77-
script: "docker/tester-create-summary.sh 'oe-selftest: pre-build' '' build.pre/TestResults_*/TEST- 0")
76+
//summary += sh(returnStdout: true,
77+
// script: "docker/tester-create-summary.sh 'oe-selftest: pre-build' '' build.pre/TestResults_*/TEST- 0")
7878
}
7979
try {
8080
set_gh_status_pending(is_pr, 'Building')

docker/crops-yocto-ubuntu-16/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ ARG gid=1000
1414

1515
USER root
1616

17+
RUN apt-get install -y\
18+
python-xmlrunner python3-unittest2 python3-six
19+
20+
1721
RUN groupadd -o -g ${gid} ${group} \
1822
&& useradd -d "$JENKINS_HOME" -u ${uid} -g ${gid} -m -s /bin/bash ${user}
1923

0 commit comments

Comments
 (0)