* [Intel-gfx] [PATCH i-g-t v2] gitlab-ci: add build for MIPS
@ 2019-06-13 14:01 Guillaume Tucker
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Guillaume Tucker @ 2019-06-13 14:01 UTC (permalink / raw)
To: Arkadiusz Hiler, Petri Latvala; +Cc: igt-dev, intel-gfx
This is to add MIPS builds to Gitlab CI.
v2:
- use stretch-backports rather than Buster
- explicitly require libatomic
Guillaume Tucker (1):
gitlab-ci: add build for MIPS
.gitlab-ci.yml | 28 ++++++++++++++++++++++++++++
Dockerfile.debian-mips | 39 +++++++++++++++++++++++++++++++++++++++
meson-cross-mips.txt | 12 ++++++++++++
3 files changed, 79 insertions(+)
create mode 100644 Dockerfile.debian-mips
create mode 100644 meson-cross-mips.txt
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2] gitlab-ci: add build for MIPS
2019-06-13 14:01 [Intel-gfx] [PATCH i-g-t v2] gitlab-ci: add build for MIPS Guillaume Tucker
@ 2019-06-13 14:01 ` Guillaume Tucker
2019-06-14 10:02 ` Petri Latvala
2019-06-14 10:33 ` Arkadiusz Hiler
2019-06-13 17:14 ` [igt-dev] ✓ Fi.CI.BAT: success for gitlab-ci: add build for MIPS (rev2) Patchwork
2019-06-15 5:35 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 2 replies; 7+ messages in thread
From: Guillaume Tucker @ 2019-06-13 14:01 UTC (permalink / raw)
To: Arkadiusz Hiler, Petri Latvala; +Cc: igt-dev, intel-gfx
Add Docker image and Gitlab CI steps to run builds for the MIPS
architecture using Debian Stretch with backports.
Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
---
.gitlab-ci.yml | 28 ++++++++++++++++++++++++++++
Dockerfile.debian-mips | 39 +++++++++++++++++++++++++++++++++++++++
meson-cross-mips.txt | 12 ++++++++++++
3 files changed, 79 insertions(+)
create mode 100644 Dockerfile.debian-mips
create mode 100644 meson-cross-mips.txt
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 771143a9ea95..e390f8f472d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -90,6 +90,17 @@ build:tests-debian-meson-arm64:
paths:
- build
+build:tests-debian-meson-mips:
+ image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-mips:latest
+ stage: build
+ script:
+ - export PKG_CONFIG_PATH=/usr/lib/mips-linux-gnu/pkgconfig/
+ - meson --cross-file meson-cross-mips.txt build
+ - ninja -C build
+ artifacts:
+ paths:
+ - build
+
build:tests-debian-autotools:
image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian:latest
stage: build
@@ -221,6 +232,23 @@ containers:igt-debian-arm64:
- docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64 -f Dockerfile.debian-arm64 .
- docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64
+containers:igt-debian-mips:
+ stage: containers
+ image: docker:stable
+ only:
+ changes:
+ - Dockerfile.debian-mips
+ - .gitlab-ci.yml
+ services:
+ - docker:dind
+ variables:
+ DOCKER_HOST: tcp://docker:2375
+ DOCKER_DRIVER: overlay2
+ script:
+ - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
+ - docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-mips -f Dockerfile.debian-mips .
+ - docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-mips
+
containers:igt-fedora:
stage: containers
image: docker:stable
diff --git a/Dockerfile.debian-mips b/Dockerfile.debian-mips
new file mode 100644
index 000000000000..ebe08db644ea
--- /dev/null
+++ b/Dockerfile.debian-mips
@@ -0,0 +1,39 @@
+FROM debian:stretch-backports
+
+RUN apt-get update
+RUN apt-get install -y \
+ flex \
+ bison \
+ pkg-config \
+ libatomic1 \
+ x11proto-dri2-dev \
+ python-docutils \
+ valgrind \
+ peg
+
+RUN dpkg --add-architecture mips
+RUN apt-get update
+RUN apt-get install -y \
+ gcc-mips-linux-gnu \
+ libpciaccess-dev:mips \
+ libkmod-dev:mips \
+ libprocps-dev:mips \
+ libunwind-dev:mips \
+ libdw-dev:mips \
+ zlib1g-dev:mips \
+ liblzma-dev:mips \
+ libcairo-dev:mips \
+ libpixman-1-dev:mips \
+ libudev-dev:mips \
+ libgsl-dev:mips \
+ libasound2-dev:mips \
+ libjson-c-dev:mips \
+ libcurl4-openssl-dev:mips \
+ libxrandr-dev:mips \
+ libxv-dev:mips
+
+RUN apt-get install -t stretch-backports -y \
+ meson \
+ libdrm-dev:mips \
+ qemu-user \
+ qemu-user-static
diff --git a/meson-cross-mips.txt b/meson-cross-mips.txt
new file mode 100644
index 000000000000..6350d677e0bc
--- /dev/null
+++ b/meson-cross-mips.txt
@@ -0,0 +1,12 @@
+[binaries]
+c = '/usr/bin/mips-linux-gnu-gcc'
+ar = '/usr/bin/mips-linux-gnu-gcc-ar'
+strip = '/usr/bin/mips-linux-gnu-strip'
+pkgconfig = 'pkg-config'
+exe_wrapper = 'qemu-mips'
+
+[host_machine]
+system = 'linux'
+cpu_family = 'mips'
+cpu = 'mips'
+endian = 'big'
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for gitlab-ci: add build for MIPS (rev2)
2019-06-13 14:01 [Intel-gfx] [PATCH i-g-t v2] gitlab-ci: add build for MIPS Guillaume Tucker
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
@ 2019-06-13 17:14 ` Patchwork
2019-06-15 5:35 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-06-13 17:14 UTC (permalink / raw)
To: Guillaume Tucker; +Cc: igt-dev
== Series Details ==
Series: gitlab-ci: add build for MIPS (rev2)
URL : https://patchwork.freedesktop.org/series/61689/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6264 -> IGTPW_3148
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/61689/revisions/2/mbox/
Known issues
------------
Here are the changes found in IGTPW_3148 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3:
- fi-blb-e6850: [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/fi-icl-u3/igt@kms_addfb_basic@tile-pitch-mismatch.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/fi-icl-u3/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_frontbuffer_tracking@basic:
- fi-icl-u2: [PASS][5] -> [FAIL][6] ([fdo#103167])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
#### Possible fixes ####
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][7] ([fdo#109485]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@prime_vgem@basic-fence-mmap:
- fi-icl-u3: [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/fi-icl-u3/igt@prime_vgem@basic-fence-mmap.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/fi-icl-u3/igt@prime_vgem@basic-fence-mmap.html
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
Participating hosts (53 -> 47)
------------------------------
Additional (1): fi-hsw-4770
Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_5055 -> IGTPW_3148
CI_DRM_6264: 40a5ebf378e800ed3654997ab43267e1aea8ccd1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3148: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/
IGT_5055: 495287320225e7f180d384cad7b207b77154438f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] gitlab-ci: add build for MIPS
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
@ 2019-06-14 10:02 ` Petri Latvala
2019-06-14 10:33 ` Arkadiusz Hiler
1 sibling, 0 replies; 7+ messages in thread
From: Petri Latvala @ 2019-06-14 10:02 UTC (permalink / raw)
To: Guillaume Tucker; +Cc: igt-dev, intel-gfx
On Thu, Jun 13, 2019 at 03:01:06PM +0100, Guillaume Tucker wrote:
> Add Docker image and Gitlab CI steps to run builds for the MIPS
> architecture using Debian Stretch with backports.
>
> Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
Same comment on libatomic1 as in the other thread applies here.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] gitlab-ci: add build for MIPS
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
2019-06-14 10:02 ` Petri Latvala
@ 2019-06-14 10:33 ` Arkadiusz Hiler
2019-06-18 11:27 ` Guillaume Tucker
1 sibling, 1 reply; 7+ messages in thread
From: Arkadiusz Hiler @ 2019-06-14 10:33 UTC (permalink / raw)
To: Guillaume Tucker; +Cc: igt-dev, intel-gfx, Petri Latvala
On Thu, Jun 13, 2019 at 03:01:06PM +0100, Guillaume Tucker wrote:
> Add Docker image and Gitlab CI steps to run builds for the MIPS
> architecture using Debian Stretch with backports.
>
> Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
> ---
> .gitlab-ci.yml | 28 ++++++++++++++++++++++++++++
> Dockerfile.debian-mips | 39 +++++++++++++++++++++++++++++++++++++++
> meson-cross-mips.txt | 12 ++++++++++++
> 3 files changed, 79 insertions(+)
> create mode 100644 Dockerfile.debian-mips
> create mode 100644 meson-cross-mips.txt
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 771143a9ea95..e390f8f472d5 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -90,6 +90,17 @@ build:tests-debian-meson-arm64:
> paths:
> - build
>
> +build:tests-debian-meson-mips:
> + image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-mips:latest
> + stage: build
> + script:
> + - export PKG_CONFIG_PATH=/usr/lib/mips-linux-gnu/pkgconfig/
> + - meson --cross-file meson-cross-mips.txt build
> + - ninja -C build
> + artifacts:
> + paths:
> + - build
> +
> build:tests-debian-autotools:
> image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian:latest
> stage: build
> @@ -221,6 +232,23 @@ containers:igt-debian-arm64:
> - docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64 -f Dockerfile.debian-arm64 .
> - docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64
Any particular reason for not having ninja-test step for MIPS?
Other than that (and Petri's concern, since I don't speak Debian),
looks good.
- Arek
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for gitlab-ci: add build for MIPS (rev2)
2019-06-13 14:01 [Intel-gfx] [PATCH i-g-t v2] gitlab-ci: add build for MIPS Guillaume Tucker
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
2019-06-13 17:14 ` [igt-dev] ✓ Fi.CI.BAT: success for gitlab-ci: add build for MIPS (rev2) Patchwork
@ 2019-06-15 5:35 ` Patchwork
2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2019-06-15 5:35 UTC (permalink / raw)
To: Guillaume Tucker; +Cc: igt-dev
== Series Details ==
Series: gitlab-ci: add build for MIPS (rev2)
URL : https://patchwork.freedesktop.org/series/61689/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6264_full -> IGTPW_3148_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/61689/revisions/2/mbox/
Known issues
------------
Here are the changes found in IGTPW_3148_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@rcs0-s3:
- shard-kbl: [PASS][1] -> [INCOMPLETE][2] ([fdo#103665])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl6/igt@gem_ctx_isolation@rcs0-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl3/igt@gem_ctx_isolation@rcs0-s3.html
* igt@gem_eio@unwedge-stress:
- shard-iclb: [PASS][3] -> [DMESG-WARN][4] ([fdo#110913 ]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb8/igt@gem_eio@unwedge-stress.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb8/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@wait-wedge-10ms:
- shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#110913 ]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-apl4/igt@gem_eio@wait-wedge-10ms.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-apl8/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-kbl: [PASS][7] -> [DMESG-WARN][8] ([fdo#110913 ]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@i915_suspend@debugfs-reader:
- shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-apl8/igt@i915_suspend@debugfs-reader.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-apl7/igt@i915_suspend@debugfs-reader.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-hsw: [PASS][11] -> [DMESG-WARN][12] ([fdo#110913 ])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip:
- shard-hsw: [PASS][13] -> [SKIP][14] ([fdo#109271]) +26 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw4/igt@kms_flip@2x-plain-flip.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-kbl: [PASS][15] -> [DMESG-WARN][16] ([fdo#108566])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +4 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#103166])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_psr@psr2_sprite_plane_onoff:
- shard-iclb: [PASS][21] -> [SKIP][22] ([fdo#109441])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb4/igt@kms_psr@psr2_sprite_plane_onoff.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: [PASS][23] -> [DMESG-FAIL][24] ([fdo#105763] / [fdo#106538])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][25] -> [FAIL][26] ([fdo#99912])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw7/igt@kms_setmode@basic.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw4/igt@kms_setmode@basic.html
- shard-kbl: [PASS][27] -> [FAIL][28] ([fdo#99912])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl4/igt@kms_setmode@basic.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl7/igt@kms_setmode@basic.html
* igt@kms_sysfs_edid_timing:
- shard-hsw: [PASS][29] -> [FAIL][30] ([fdo#100047])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw1/igt@kms_sysfs_edid_timing.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw1/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@pipe-b-wait-busy-hang:
- shard-snb: [PASS][31] -> [DMESG-WARN][32] ([fdo#110913 ]) +2 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-snb6/igt@kms_vblank@pipe-b-wait-busy-hang.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-snb5/igt@kms_vblank@pipe-b-wait-busy-hang.html
* igt@perf@oa-formats:
- shard-hsw: [PASS][33] -> [INCOMPLETE][34] ([fdo#103540] / [fdo#108767])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw5/igt@perf@oa-formats.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw7/igt@perf@oa-formats.html
#### Possible fixes ####
* igt@gem_ctx_isolation@bcs0-s3:
- shard-kbl: [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl1/igt@gem_ctx_isolation@bcs0-s3.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl4/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_eio@in-flight-immediate:
- shard-iclb: [DMESG-WARN][37] ([fdo#110913 ]) -> [PASS][38] +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb5/igt@gem_eio@in-flight-immediate.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb7/igt@gem_eio@in-flight-immediate.html
* igt@gem_persistent_relocs@forked-faulting-reloc-thrashing:
- shard-hsw: [DMESG-WARN][39] ([fdo#110789] / [fdo#110913 ]) -> [PASS][40] +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw7/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw4/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
* igt@gem_persistent_relocs@forked-interruptible-thrashing:
- shard-apl: [DMESG-WARN][41] ([fdo#110913 ]) -> [PASS][42] +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-apl7/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-apl5/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
* igt@gem_persistent_relocs@forked-thrashing:
- shard-snb: [DMESG-WARN][43] ([fdo#110789] / [fdo#110913 ]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-snb7/igt@gem_persistent_relocs@forked-thrashing.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-snb1/igt@gem_persistent_relocs@forked-thrashing.html
- shard-glk: [DMESG-WARN][45] ([fdo#110913 ]) -> [PASS][46] +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-glk5/igt@gem_persistent_relocs@forked-thrashing.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-glk7/igt@gem_persistent_relocs@forked-thrashing.html
* igt@gem_tiled_swapping@non-threaded:
- shard-iclb: [FAIL][47] ([fdo#108686]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb6/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-snb: [DMESG-WARN][49] ([fdo#110913 ]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-hsw: [DMESG-WARN][51] ([fdo#110913 ]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-kbl: [DMESG-WARN][53] ([fdo#110913 ]) -> [PASS][54] +3 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl3/igt@gem_userptr_blits@sync-unmap-cycles.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl4/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding:
- shard-kbl: [FAIL][55] ([fdo#103232]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html
- shard-apl: [FAIL][57] ([fdo#103232]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-hsw: [SKIP][59] ([fdo#109271]) -> [PASS][60] +13 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-iclb: [FAIL][61] ([fdo#103167]) -> [PASS][62] +1 similar issue
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-iclb: [INCOMPLETE][63] ([fdo#106978] / [fdo#107713]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_psr@psr2_dpms:
- shard-iclb: [SKIP][65] ([fdo#109441]) -> [PASS][66] +2 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-iclb3/igt@kms_psr@psr2_dpms.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-iclb2/igt@kms_psr@psr2_dpms.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-apl: [DMESG-WARN][67] ([fdo#108566]) -> [PASS][68] +3 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
#### Warnings ####
* igt@gem_tiled_swapping@non-threaded:
- shard-hsw: [FAIL][69] ([fdo#108686]) -> [INCOMPLETE][70] ([fdo#103540])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6264/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/shard-hsw7/igt@gem_tiled_swapping@non-threaded.html
[fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#106538]: https://bugs.freedesktop.org/show_bug.cgi?id=106538
[fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#108767]: https://bugs.freedesktop.org/show_bug.cgi?id=108767
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
[fdo#110913 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110913
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (10 -> 6)
------------------------------
Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005
Build changes
-------------
* IGT: IGT_5055 -> IGTPW_3148
* Piglit: piglit_4509 -> None
CI_DRM_6264: 40a5ebf378e800ed3654997ab43267e1aea8ccd1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3148: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/
IGT_5055: 495287320225e7f180d384cad7b207b77154438f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3148/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] gitlab-ci: add build for MIPS
2019-06-14 10:33 ` Arkadiusz Hiler
@ 2019-06-18 11:27 ` Guillaume Tucker
0 siblings, 0 replies; 7+ messages in thread
From: Guillaume Tucker @ 2019-06-18 11:27 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev, intel-gfx, Petri Latvala
On 14/06/2019 11:33, Arkadiusz Hiler wrote:
> On Thu, Jun 13, 2019 at 03:01:06PM +0100, Guillaume Tucker wrote:
>> Add Docker image and Gitlab CI steps to run builds for the MIPS
>> architecture using Debian Stretch with backports.
>>
>> Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
>> ---
>> .gitlab-ci.yml | 28 ++++++++++++++++++++++++++++
>> Dockerfile.debian-mips | 39 +++++++++++++++++++++++++++++++++++++++
>> meson-cross-mips.txt | 12 ++++++++++++
>> 3 files changed, 79 insertions(+)
>> create mode 100644 Dockerfile.debian-mips
>> create mode 100644 meson-cross-mips.txt
>>
>> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
>> index 771143a9ea95..e390f8f472d5 100644
>> --- a/.gitlab-ci.yml
>> +++ b/.gitlab-ci.yml
>> @@ -90,6 +90,17 @@ build:tests-debian-meson-arm64:
>> paths:
>> - build
>>
>> +build:tests-debian-meson-mips:
>> + image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-mips:latest
>> + stage: build
>> + script:
>> + - export PKG_CONFIG_PATH=/usr/lib/mips-linux-gnu/pkgconfig/
>> + - meson --cross-file meson-cross-mips.txt build
>> + - ninja -C build
>> + artifacts:
>> + paths:
>> + - build
>> +
>> build:tests-debian-autotools:
>> image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian:latest
>> stage: build
>> @@ -221,6 +232,23 @@ containers:igt-debian-arm64:
>> - docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64 -f Dockerfile.debian-arm64 .
>> - docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-arm64
>
> Any particular reason for not having ninja-test step for MIPS?
Sorry I overlooked that bit, I'm adding it in a v3. That made me
realise that the libatomic1:mips package was required for
run-time linking on multi-arch file systems.
> Other than that (and Petri's concern, since I don't speak Debian),
> looks good.
Thanks, I also replied on the other thread about adding
libatomic1 for sub-architectures.
Guillaume
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-06-18 11:27 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-13 14:01 [Intel-gfx] [PATCH i-g-t v2] gitlab-ci: add build for MIPS Guillaume Tucker
2019-06-13 14:01 ` [igt-dev] " Guillaume Tucker
2019-06-14 10:02 ` Petri Latvala
2019-06-14 10:33 ` Arkadiusz Hiler
2019-06-18 11:27 ` Guillaume Tucker
2019-06-13 17:14 ` [igt-dev] ✓ Fi.CI.BAT: success for gitlab-ci: add build for MIPS (rev2) Patchwork
2019-06-15 5:35 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox