diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2024-06-19 14:03:27 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2024-06-19 14:04:05 +0200 |
commit | 305dc9712d072f0fc1a783cbb579e5f7203bd1ce (patch) | |
tree | d596071571392c9ed9f2051aefd9db052c767af1 | |
parent | 1fb288761cf44197c2767bb8bd11d386eebb5e64 (diff) |
Prepare templates for pi5HEADsalmon_18.90.0salmon/18.90.0ricefish_17.92.0ricefish/17.92.018.90.017.92.0master
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Change-Id: I077ced1d706265228a978c88432dee45d0670858
-rw-r--r-- | templates/machines/raspberrypi5-64.jinja2 | 1 | ||||
-rw-r--r-- | templates/machines/raspberrypi5.jinja2 | 1 | ||||
-rwxr-xr-x | utils/run-flounder-ci-tests | 14 |
3 files changed, 12 insertions, 4 deletions
diff --git a/templates/machines/raspberrypi5-64.jinja2 b/templates/machines/raspberrypi5-64.jinja2 new file mode 100644 index 0000000..063ca3b --- /dev/null +++ b/templates/machines/raspberrypi5-64.jinja2 @@ -0,0 +1 @@ +{%- extends 'machines/raspberrypi4.jinja2' %} diff --git a/templates/machines/raspberrypi5.jinja2 b/templates/machines/raspberrypi5.jinja2 new file mode 100644 index 0000000..063ca3b --- /dev/null +++ b/templates/machines/raspberrypi5.jinja2 @@ -0,0 +1 @@ +{%- extends 'machines/raspberrypi4.jinja2' %} diff --git a/utils/run-flounder-ci-tests b/utils/run-flounder-ci-tests index 986a0d0..fb31b00 100755 --- a/utils/run-flounder-ci-tests +++ b/utils/run-flounder-ci-tests @@ -3,17 +3,23 @@ SERVER="https://jsmoeller@lava.automotivelinux.org" -MACHINES="dra7xx-evm m3ulcb qemux86-64 raspberrypi3" -AGLVERSION="$1" +MACHINES="qemux86-64 raspberrypi4" +AGLBRANCH="$1" +AGLVERSION="$2" + +if test x"" = x"${AGLBRANCH}" ; then + echo "Need to specify branch and version number to test" + exit 1 +fi if test x"" = x"${AGLVERSION}" ; then - echo "Need to specify version number to test" + echo "Need to specify branch and 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}/ --callback-from lab-jsmoeller --test all --build-type release -n AGL-Flounder-${AGLVERSION}-${MACHINE} > /tmp/1.yaml +./create-jobs.py --machine ${MACHINE} --url https://download.automotivelinux.org/AGL/upload/ci/${AGLBRANCH}/${AGLVERSION}/${MACHINE}/deploy/images/${MACHINE}/ --callback-from lab-jsmoeller --test all --build-type release -n AGL-${AGLBRANCH}-${AGLVERSION}-${MACHINE} > /tmp/1.yaml lava-tool submit-job https://jsmoeller@lava.automotivelinux.org /tmp/1.yaml done
\ No newline at end of file |