All of lore.kernel.org
 help / color / mirror / Atom feed
* [cip-dev] [PATCH linux-4.4.y-cip-rt 1/2] gitlab-ci: Always store job artifacts
@ 2019-09-18 15:43 Chris Paterson
  2019-09-18 15:44 ` [cip-dev] [PATCH linux-4.4.y-cip-rt 2/2] gitlab-ci: Run tests on RZ/G1C iwg23s platform Chris Paterson
  0 siblings, 1 reply; 2+ messages in thread
From: Chris Paterson @ 2019-09-18 15:43 UTC (permalink / raw)
  To: cip-dev

This means that we'll retain the Kernel configuration even if the build
fails. Useful for debugging.

Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>
---
 .gitlab-ci.yml | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0418275194b2..f2b61ce336e3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ arm_hitachi_omap_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -33,7 +33,7 @@ arm_moxa_mxc_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -50,7 +50,7 @@ arm_renesas_shmobile_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -66,7 +66,7 @@ arm_siemens_am335x-axm2_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -82,7 +82,7 @@ arm_siemens_am335x-draco_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -98,7 +98,7 @@ arm_siemens_am335x-dxr2_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -114,7 +114,7 @@ arm_siemens_am335x-etamin_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -130,7 +130,7 @@ arm_siemens_am57xx-pxm3.config:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -146,7 +146,7 @@ arm_siemens_dcu2.config:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -162,7 +162,7 @@ arm_siemens_imx6_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -178,7 +178,7 @@ arm_toshiba_tegra_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -194,7 +194,7 @@ arm_toshiba_zynq_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -210,7 +210,7 @@ x86_plathome_obsvx1.config:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -226,7 +226,7 @@ x86_siemens_iot2000.config:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -242,7 +242,7 @@ x86_siemens_server_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -258,7 +258,7 @@ x86_toshiba_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -275,7 +275,7 @@ rt_x86_siemens_i386-rt.config:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -293,7 +293,7 @@ arm_shmobile_defconfig:
     - /opt/build_kernel.sh
   artifacts:
     name: "$CI_JOB_NAME"
-    when: on_success
+    when: always
     paths:
       - output
 
@@ -309,5 +309,6 @@ run_tests:
     - /opt/submit_tests.sh
   artifacts:
     name: "$CI_JOB_NAME"
+    when: always
     paths:
       - output
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [cip-dev] [PATCH linux-4.4.y-cip-rt 2/2] gitlab-ci: Run tests on RZ/G1C iwg23s platform
  2019-09-18 15:43 [cip-dev] [PATCH linux-4.4.y-cip-rt 1/2] gitlab-ci: Always store job artifacts Chris Paterson
@ 2019-09-18 15:44 ` Chris Paterson
  0 siblings, 0 replies; 2+ messages in thread
From: Chris Paterson @ 2019-09-18 15:44 UTC (permalink / raw)
  To: cip-dev

LAVA device-type r8a77470-iwg23s-sbc.

Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>
---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2b61ce336e3..59323dd06c6a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -44,8 +44,8 @@ arm_renesas_shmobile_defconfig:
     BUILD_ARCH: arm
     CONFIG: renesas_shmobile_defconfig
     CONFIG_LOC: cip-kernel-config
-    DEVICES: r8a7743-iwg20d-q7 r8a7745-iwg22d-sodimm
-    DTBS: r8a7743-iwg20d-q7-dbcm-ca.dtb r8a7745-iwg22d-sodimm-dbhd-ca.dtb
+    DEVICES: r8a7743-iwg20d-q7 r8a7745-iwg22d-sodimm r8a77470-iwg23s-sbc
+    DTBS: r8a7743-iwg20d-q7-dbcm-ca.dtb r8a7745-iwg22d-sodimm-dbhd-ca.dtb r8a77470-iwg23s-sbc.dtb
   script:
     - /opt/build_kernel.sh
   artifacts:
@@ -287,8 +287,8 @@ arm_shmobile_defconfig:
     BUILD_ARCH: arm
     CONFIG: shmobile_defconfig
     CONFIG_LOC: intree
-    DEVICES: r8a7743-iwg20d-q7 r8a7745-iwg22d-sodimm
-    DTBS: r8a7743-iwg20d-q7-dbcm-ca.dtb r8a7745-iwg22d-sodimm-dbhd-ca.dtb
+    DEVICES: r8a7743-iwg20d-q7 r8a7745-iwg22d-sodimm r8a77470-iwg23s-sbc
+    DTBS: r8a7743-iwg20d-q7-dbcm-ca.dtb r8a7745-iwg22d-sodimm-dbhd-ca.dtb r8a77470-iwg23s-sbc.dtb
   script:
     - /opt/build_kernel.sh
   artifacts:
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-09-18 15:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-18 15:43 [cip-dev] [PATCH linux-4.4.y-cip-rt 1/2] gitlab-ci: Always store job artifacts Chris Paterson
2019-09-18 15:44 ` [cip-dev] [PATCH linux-4.4.y-cip-rt 2/2] gitlab-ci: Run tests on RZ/G1C iwg23s platform Chris Paterson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.