Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhcopeland/05b46cc136f9a7635787addbfbdc257d to your computer and use it in GitHub Desktop.
Save bhcopeland/05b46cc136f9a7635787addbfbdc257d to your computer and use it in GitHub Desktop.
From 68520e9d3d15da1a799fb750e94f538d0c1d403f Mon Sep 17 00:00:00 2001
From: Benjamin Copeland <ben.copeland@linaro.org>
Date: Thu, 27 May 2021 09:25:01 +0100
Subject: [PATCH] Revert "sanity|tests: disable db845c"
This reverts commit 9bbed418bf4bd23f4800b2d32e398ee70c2b9644.
Since db845c have now been re-added to the lab we can start processing
jobs again.
Signed-off-by: Benjamin Copeland <ben.copeland@linaro.org>
---
sanity_job.yml | 18 ++++++++++++++++++
tests.yml | 22 ++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/sanity_job.yml b/sanity_job.yml
index d6fcdd2..dac0c4c 100644
--- a/sanity_job.yml
+++ b/sanity_job.yml
@@ -31,6 +31,24 @@ sanity-x15:
- job: download_prerequisites
artifacts: true
+sanity-db845c:
+ extends:
+ - .sanity
+ variables:
+ ARCH: arm64
+ DEVICE_TYPE: dragonboard-845c
+ needs:
+ - build-arm64-gcc-9
+ - job: download_prerequisites
+ artifacts: true
+ rules:
+ - if: '$RUN_SANITY == "0"'
+ when: never
+ - if: '$CI_COMMIT_BRANCH =~ /^linux-4.*/'
+ when: never
+ - if: '$CI_COMMIT_BRANCH == "linux-5.4.y"'
+ when: never
+
sanity-x86_64:
extends:
- .sanity
diff --git a/tests.yml b/tests.yml
index c9d06f9..5ebf2d1 100644
--- a/tests.yml
+++ b/tests.yml
@@ -203,6 +203,28 @@ test-db410c-igt:
when: manual
- when: on_success
+test-db845c:
+ extends:
+ - .test
+ variables:
+ ARCH: arm64
+ DEVICE_TYPE: dragonboard-845c
+ LAVA_TESTS: "${default_lava_tests} --test-case kvm-unit-tests.yaml"
+ needs:
+ - build-arm64-gcc-9
+ - job: download_prerequisites
+ artifacts: true
+ rules:
+ - if: '$RUN_TEST == "0"'
+ when: never
+ - if: '$CI_COMMIT_BRANCH =~ /^linux-4.*/'
+ when: never
+ - if: '$CI_COMMIT_BRANCH == "linux-5.4.y"'
+ when: never
+ - if: '$MANUAL_TEST == "1"'
+ when: manual
+ - when: on_success
+
test-ls2088a:
extends:
- .test
--
2.31.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment