N1SDP: Run simple boot test on OpenCI
We will replace the full Linux test, which includes
some network and Linux functional tests, with a
simple boot test to validate build artifacts on OpenCI,
while retaining the comprehensive Linux test for internal CI.
Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: Idc01405b8f413132294e7fc90705b7da9271b30d
diff --git a/run_config/n1sdp-linux b/run_config/n1sdp-linux
index 364982d..5b4479c 100644
--- a/run_config/n1sdp-linux
+++ b/run_config/n1sdp-linux
@@ -6,6 +6,12 @@
#
generate_lava_job(){
- target="n1sdp" payload_type="linux" gen_yaml_template
+ if [ "${ci_env}" = "armci" ]; then
+ payload_type="linux"
+ else
+ # Run simple boot test on OpenCi
+ payload_type="boot"
+ fi
+ target="n1sdp" payload_type="${payload_type}" gen_yaml_template
gen_n1sdp_yaml
}