summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xutils/run-flounder-ci-tests19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/run-flounder-ci-tests b/utils/run-flounder-ci-tests
new file mode 100755
index 0000000..0ca408d
--- /dev/null
+++ b/utils/run-flounder-ci-tests
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+
+
+SERVER="https://jsmoeller@lava.automotivelinux.org"
+MACHINES="dra7xx-evm m3ulcb qemux86-64 raspberrypi3"
+AGLVERSION="$1"
+
+if test x"" = x"${AGLVERSION}" ; then
+ echo "Need to specify version number to test"
+ exit 1
+fi
+
+for MACHINE in $MACHINES ; do
+
+./create-jobs.py --machine ${MACHINE} --url https://download.automotivelinux.org/AGL/upload/ci/flounder/${AGLVERSION}/${MACHINE}/deploy/images/${MACHINE}/ --test all --build-type release -n AGL-Flounder-${AGLVERSION}-${MACHINE} > /tmp/1.yaml
+lava-tool submit-job https://jsmoeller@lava.automotivelinux.org /tmp/1.yaml
+
+done \ No newline at end of file