diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2024-02-15 19:00:58 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2024-02-15 19:00:58 +0100 |
commit | a6490835e97f3e49f4d515b8c3d8d405fabd78ab (patch) | |
tree | a53c1b654684141121497a643a0bca53b6685b38 | |
parent | 9ef8cc04598f6124dd39bdb40614084d4b174ad2 (diff) |
Simplify PI4 case in jobtemplatericefish_17.90.0ricefish/17.90.017.90.0
We do no longer differ by branches. Remove that part.
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Change-Id: I4ef394bfc19e3a084525a7befaa1f97a4e3d817f
-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 34d7cbb..37e1f3a 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -147,7 +147,7 @@ class Agljobtemplate(object): if machine == "upsquare": machine_frag_url = "qemux86-64" build_name = "qemux86-64" - if ( vcs_branch == "master" or vcs_branch == "koi" ) and (machine == "raspberrypi4" or machine == "raspberrypi4-64"): + if (machine == "raspberrypi4" or machine == "raspberrypi4-64"): machine_frag_url = "raspberrypi4-64" build_name = "raspberrypi4" job['yocto_machine'] = "raspberrypi4-64" |