cip-dev.lists.cip-project.org archive mirror
 help / color / mirror / Atom feed
* [cip-dev] [PATCH linux-4.19.y-cip-rt] Update to run all CIP arm, arm64 and x86 configs
@ 2019-08-05 15:35 Chris Paterson
  2019-08-05 15:35 ` [cip-dev] [PATCH linux-4.19.y-cip] " Chris Paterson
  2019-08-06  8:33 ` [cip-dev] [PATCH linux-4.19.y-cip-rt] " Chris Paterson
  0 siblings, 2 replies; 5+ messages in thread
From: Chris Paterson @ 2019-08-05 15:35 UTC (permalink / raw)
  To: cip-dev

Also update to use new linux-cip-ci repository location.

Support for real-time will be added later.

Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>
---

Today the linux-cip-ci project moved to the offical cip-project/cip-testing
namespace. Until this patch is accepted CI won't work on this branch of the
linux-cip project.

 .gitlab-ci.yml | 172 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 168 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fb775f4950b1..62562c8b6fbb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,9 +4,58 @@ variables:
   DOCKER_DRIVER: overlay2
   DOCKER_IMAGE_TAG: v2
 
+# Building
+arm_hitachi_cyclonev_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: hitachi_cyclonev_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm_hitachi_omap_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: hitachi_omap_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm_moxa_mxc_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: moxa_mxc_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
 arm_renesas_shmobile_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm
     CONFIG: renesas_shmobile_defconfig
@@ -21,9 +70,41 @@ arm_renesas_shmobile_defconfig:
     paths:
       - output
 
+arm_siemens_imx6.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: siemens_imx6.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm64_moxa_eds_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm64
+    CONFIG: moxa_eds_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
 arm64_renesas_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm64
     CONFIG: renesas_defconfig
@@ -38,9 +119,74 @@ arm64_renesas_defconfig:
     paths:
       - output
 
+x86_plathome_obsvx2.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: plathome_obsvx2.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_siemens_iot2000.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: siemens_iot2000.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_siemens_server_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: siemens_server_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_toshiba_atom_baytrail_cip.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: toshiba_atom_baytrail_cip.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+# Extra build configurations
 arm_shmobile_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm
     CONFIG: shmobile_defconfig
@@ -55,9 +201,27 @@ arm_shmobile_defconfig:
     paths:
       - output
 
+arm64_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm64
+    CONFIG: defconfig
+    CONFIG_LOC: intree
+    DEVICES: r8a774c0-ek874
+    DTBS: r8a774c0-ek874.dtb
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+# Testing
 run_tests:
   stage: test
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:test-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:test-$DOCKER_IMAGE_TAG
   when: always
   variables:
     GIT_STRATEGY: none
-- 
2.17.1

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

* [cip-dev] [PATCH linux-4.19.y-cip] Update to run all CIP arm, arm64 and x86 configs
  2019-08-05 15:35 [cip-dev] [PATCH linux-4.19.y-cip-rt] Update to run all CIP arm, arm64 and x86 configs Chris Paterson
@ 2019-08-05 15:35 ` Chris Paterson
  2019-08-05 15:53   ` Chris Paterson
  2019-08-05 19:45   ` Pavel Machek
  2019-08-06  8:33 ` [cip-dev] [PATCH linux-4.19.y-cip-rt] " Chris Paterson
  1 sibling, 2 replies; 5+ messages in thread
From: Chris Paterson @ 2019-08-05 15:35 UTC (permalink / raw)
  To: cip-dev

Also update to use new linux-cip-ci repository location.

Support for real-time will be added later.

Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>
---

Today the linux-cip-ci project moved to the offical cip-project/cip-testing
namespace. Until this patch is accepted CI won't work on this branch of the
linux-cip project.

 .gitlab-ci.yml | 172 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 168 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fb775f4950b1..62562c8b6fbb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,9 +4,58 @@ variables:
   DOCKER_DRIVER: overlay2
   DOCKER_IMAGE_TAG: v2
 
+# Building
+arm_hitachi_cyclonev_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: hitachi_cyclonev_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm_hitachi_omap_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: hitachi_omap_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm_moxa_mxc_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: moxa_mxc_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
 arm_renesas_shmobile_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm
     CONFIG: renesas_shmobile_defconfig
@@ -21,9 +70,41 @@ arm_renesas_shmobile_defconfig:
     paths:
       - output
 
+arm_siemens_imx6.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm
+    CONFIG: siemens_imx6.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+arm64_moxa_eds_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm64
+    CONFIG: moxa_eds_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
 arm64_renesas_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm64
     CONFIG: renesas_defconfig
@@ -38,9 +119,74 @@ arm64_renesas_defconfig:
     paths:
       - output
 
+x86_plathome_obsvx2.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: plathome_obsvx2.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_siemens_iot2000.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: siemens_iot2000.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_siemens_server_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: siemens_server_defconfig
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+x86_toshiba_atom_baytrail_cip.config:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: x86
+    CONFIG: toshiba_atom_baytrail_cip.config
+    CONFIG_LOC: cip-kernel-config
+    BUILD_ONLY: "true"
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+# Extra build configurations
 arm_shmobile_defconfig:
   stage: build
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
   variables:
     BUILD_ARCH: arm
     CONFIG: shmobile_defconfig
@@ -55,9 +201,27 @@ arm_shmobile_defconfig:
     paths:
       - output
 
+arm64_defconfig:
+  stage: build
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-$DOCKER_IMAGE_TAG
+  variables:
+    BUILD_ARCH: arm64
+    CONFIG: defconfig
+    CONFIG_LOC: intree
+    DEVICES: r8a774c0-ek874
+    DTBS: r8a774c0-ek874.dtb
+  script:
+    - /opt/build_kernel.sh
+  artifacts:
+    name: "$CI_JOB_NAME"
+    when: on_success
+    paths:
+      - output
+
+# Testing
 run_tests:
   stage: test
-  image: registry.gitlab.com/cip-playground/linux-cip-ci:test-$DOCKER_IMAGE_TAG
+  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:test-$DOCKER_IMAGE_TAG
   when: always
   variables:
     GIT_STRATEGY: none
-- 
2.17.1

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

* [cip-dev] [PATCH linux-4.19.y-cip] Update to run all CIP arm, arm64 and x86 configs
  2019-08-05 15:35 ` [cip-dev] [PATCH linux-4.19.y-cip] " Chris Paterson
@ 2019-08-05 15:53   ` Chris Paterson
  2019-08-05 19:45   ` Pavel Machek
  1 sibling, 0 replies; 5+ messages in thread
From: Chris Paterson @ 2019-08-05 15:53 UTC (permalink / raw)
  To: cip-dev

> From: Chris Paterson <chris.paterson2@renesas.com>
> Sent: 05 August 2019 16:36
> 
> Also update to use new linux-cip-ci repository location.
> 
> Support for real-time will be added later.

FYI you can see a completed run using this gitlab-ci.yml file here:
https://gitlab.com/cip-project/cip-kernel/linux-cip/pipelines/74777218

Kind regards, Chris

> 
> Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>
> ---
> 
> Today the linux-cip-ci project moved to the offical cip-project/cip-testing
> namespace. Until this patch is accepted CI won't work on this branch of the
> linux-cip project.
> 
>  .gitlab-ci.yml | 172
> +++++++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 168 insertions(+), 4 deletions(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index fb775f4950b1..62562c8b6fbb 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -4,9 +4,58 @@ variables:
>    DOCKER_DRIVER: overlay2
>    DOCKER_IMAGE_TAG: v2
> 
> +# Building
> +arm_hitachi_cyclonev_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm
> +    CONFIG: hitachi_cyclonev_defconfig
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +arm_hitachi_omap_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm
> +    CONFIG: hitachi_omap_defconfig
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +arm_moxa_mxc_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm
> +    CONFIG: moxa_mxc_defconfig
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
>  arm_renesas_shmobile_defconfig:
>    stage: build
> -  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
>    variables:
>      BUILD_ARCH: arm
>      CONFIG: renesas_shmobile_defconfig
> @@ -21,9 +70,41 @@ arm_renesas_shmobile_defconfig:
>      paths:
>        - output
> 
> +arm_siemens_imx6.config:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm
> +    CONFIG: siemens_imx6.config
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +arm64_moxa_eds_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm64
> +    CONFIG: moxa_eds_defconfig
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
>  arm64_renesas_defconfig:
>    stage: build
> -  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
>    variables:
>      BUILD_ARCH: arm64
>      CONFIG: renesas_defconfig
> @@ -38,9 +119,74 @@ arm64_renesas_defconfig:
>      paths:
>        - output
> 
> +x86_plathome_obsvx2.config:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: x86
> +    CONFIG: plathome_obsvx2.config
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +x86_siemens_iot2000.config:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: x86
> +    CONFIG: siemens_iot2000.config
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +x86_siemens_server_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: x86
> +    CONFIG: siemens_server_defconfig
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +x86_toshiba_atom_baytrail_cip.config:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: x86
> +    CONFIG: toshiba_atom_baytrail_cip.config
> +    CONFIG_LOC: cip-kernel-config
> +    BUILD_ONLY: "true"
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +# Extra build configurations
>  arm_shmobile_defconfig:
>    stage: build
> -  image: registry.gitlab.com/cip-playground/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
>    variables:
>      BUILD_ARCH: arm
>      CONFIG: shmobile_defconfig
> @@ -55,9 +201,27 @@ arm_shmobile_defconfig:
>      paths:
>        - output
> 
> +arm64_defconfig:
> +  stage: build
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:build-
> $DOCKER_IMAGE_TAG
> +  variables:
> +    BUILD_ARCH: arm64
> +    CONFIG: defconfig
> +    CONFIG_LOC: intree
> +    DEVICES: r8a774c0-ek874
> +    DTBS: r8a774c0-ek874.dtb
> +  script:
> +    - /opt/build_kernel.sh
> +  artifacts:
> +    name: "$CI_JOB_NAME"
> +    when: on_success
> +    paths:
> +      - output
> +
> +# Testing
>  run_tests:
>    stage: test
> -  image: registry.gitlab.com/cip-playground/linux-cip-ci:test-
> $DOCKER_IMAGE_TAG
> +  image: registry.gitlab.com/cip-project/cip-testing/linux-cip-ci:test-
> $DOCKER_IMAGE_TAG
>    when: always
>    variables:
>      GIT_STRATEGY: none
> --
> 2.17.1

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

* [cip-dev] [PATCH linux-4.19.y-cip] Update to run all CIP arm, arm64 and x86 configs
  2019-08-05 15:35 ` [cip-dev] [PATCH linux-4.19.y-cip] " Chris Paterson
  2019-08-05 15:53   ` Chris Paterson
@ 2019-08-05 19:45   ` Pavel Machek
  1 sibling, 0 replies; 5+ messages in thread
From: Pavel Machek @ 2019-08-05 19:45 UTC (permalink / raw)
  To: cip-dev

Hi!

> Also update to use new linux-cip-ci repository location.
> 
> Support for real-time will be added later.
> 
> Signed-off-by: Chris Paterson <chris.paterson2@renesas.com>

Thanks, I applied all four patches.

Best regards,
								Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://lists.cip-project.org/pipermail/cip-dev/attachments/20190805/9a2e7f5b/attachment.sig>

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

* [cip-dev] [PATCH linux-4.19.y-cip-rt] Update to run all CIP arm, arm64 and x86 configs
  2019-08-05 15:35 [cip-dev] [PATCH linux-4.19.y-cip-rt] Update to run all CIP arm, arm64 and x86 configs Chris Paterson
  2019-08-05 15:35 ` [cip-dev] [PATCH linux-4.19.y-cip] " Chris Paterson
@ 2019-08-06  8:33 ` Chris Paterson
  1 sibling, 0 replies; 5+ messages in thread
From: Chris Paterson @ 2019-08-06  8:33 UTC (permalink / raw)
  To: cip-dev

Hello Pavel, all,

> From: Chris Paterson <chris.paterson2@renesas.com>
> Sent: 05 August 2019 16:36
> 
> Also update to use new linux-cip-ci repository location.
> 
> Support for real-time will be added later.

We've hit a failure [1] for one of the builds on the linux-4.19.y-cip-rt branch for the siemens_am57xx-pxm3 config.

siemens_am57xx-pxm3 builds fine with the linux-4.19.y-cip branch [2].

Looking at the logs we see the same build warning [3] from both jobs but it looks like warnings are being set to trigger errors in the -rt branch, but not in the non-rt branch [4].

Is it possible to get these build warnings fixed?
Do we need to fail on such build warnings?

[1] https://gitlab.com/cip-project/cip-kernel/linux-cip/-/jobs/266288367
[2] https://gitlab.com/cip-project/cip-kernel/linux-cip/-/jobs/266288345
[3] grep for cpdma_desc_pool_create
[4] "cc1: some warnings being treated as errors"

Kind regards, Chris

<snip>

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

end of thread, other threads:[~2019-08-06  8:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-05 15:35 [cip-dev] [PATCH linux-4.19.y-cip-rt] Update to run all CIP arm, arm64 and x86 configs Chris Paterson
2019-08-05 15:35 ` [cip-dev] [PATCH linux-4.19.y-cip] " Chris Paterson
2019-08-05 15:53   ` Chris Paterson
2019-08-05 19:45   ` Pavel Machek
2019-08-06  8:33 ` [cip-dev] [PATCH linux-4.19.y-cip-rt] " Chris Paterson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).