diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-09-18 17:06:43 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-09-18 17:06:43 +0200 |
commit | f967e6e53b50de90edd84a371c4491734d7b372a (patch) | |
tree | 2d2a737901ed37a12fa9558428fd9bef3b8ad4a9 | |
parent | 57ae788397538456c642a6fb10d54118984e0c0b (diff) |
Do include the pi4-64 case on jellyfish branch
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I3989f6315ff9c5a3e2ccbcb2385b6aa7bdea92d8
-rw-r--r-- | utils/agljobtemplate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py index 28e06ec..7d11379 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -142,7 +142,7 @@ class Agljobtemplate(object): if machine == "upsquare": machine_frag_url = "qemux86-64" build_name = "qemux86-64" - if vcs_branch == "master" and (machine == "raspberrypi4" or machine == "raspberrypi4-64"): + if ( vcs_branch == "master" or vcs_branch == "jellyfish" ) and (machine == "raspberrypi4" or machine == "raspberrypi4-64"): machine_frag_url = "raspberrypi4-64" build_name = "raspberrypi4" job['yocto_machine'] = "raspberrypi4-64" |