Commit 7318fc79 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Upgrading base ubuntu version for Robot test suite docker image

parent e894e8e8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
FROM ubuntu:16.04
FROM ubuntu:18.04

MAINTAINER ETSI CTI

+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
cd /home/etsi/dev/robot/ 

res=0
for i in */*/*.robot ; do
for i in $(find . -name "*.robot"); do
    if [[ "$i" != *"Keywords.robot"* && "$i" != *"Keyword.robot"* ]] ; then
	echo "++++ Dryrun file $i"
	msg=$(robot --dryrun --output NONE --report NONE --log NONE $i 2>&1)