LAVA: Skip MUSCA B1 test in per-patch job

To keep a better performance, skip MUSCA B1 test in per-patch job.

Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I228eab3b5195735dfb22aaddf69a2d2ad0af2743
diff --git a/jenkins/lava-submit.jpl b/jenkins/lava-submit.jpl
index 89a114a..88d1af3 100644
--- a/jenkins/lava-submit.jpl
+++ b/jenkins/lava-submit.jpl
@@ -30,8 +30,9 @@
   }
   // For AN521 builds running per-patch (started by the tf-m-static job),
   // run tests only on FVP to improve turnaround/performance.
+  // Skip tests on MUSCA B1 in per-patch for better performance.
   if (isPerPatchJob()) {
-    if (env.TFM_PLATFORM == "arm/mps2/an521") {
+    if (env.TFM_PLATFORM == "arm/mps2/an521" || env.TFM_PLATFORM == "arm/musca_b1") {
       device_type = "--fvp-only "
       print("Run test cases only on FVP in tf-m-static.")
     }