Message ID | 741648760682e3097a0d984342e5cad9387172cf.1683943670.git-series.marmarek@invisiblethingslab.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | automation: add AMD hw runner | expand |
On Sat, 13 May 2023, Marek Marczykowski-Górecki wrote: > This adds another physical runner to Gitlab-CI, running similar set of > jobs that the Adler Lake one. > > The machine specifically is > MinisForum UM773 Lite with AMD Ryzen 7 7735HS > > The PV passthrough test is skipped as currently it fails on this system > with: > (d1) Can't find new memory area for initrd needed due to E820 map conflict > > The S3 test is skipped as it currently fails - the system seems to > suspend properly (power LED blinks), but when woken up the power LED > gets back to solid on and the fan spins at top speed and but otherwise there is no > signs of if life from the system (no output on the console, HDMI or > anything else). > > Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > --- > automation/gitlab-ci/test.yaml | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml > index cb7fd5c272e9..81d027532cca 100644 > --- a/automation/gitlab-ci/test.yaml > +++ b/automation/gitlab-ci/test.yaml > @@ -108,6 +108,16 @@ > tags: > - qubes-hw2 > > +.zen3p-x86-64: > + # it's really similar to the above > + extends: .adl-x86-64 > + variables: > + PCIDEV: "01:00.0" > + PCIDEV_INTR: "MSI-X" > + CONSOLE_OPTS: "console=com1 com1=115200,8n1,pci,msi" > + tags: > + - qubes-hw11 > + > # Test jobs > build-each-commit-gcc: > extends: .test-jobs-common > @@ -176,6 +186,22 @@ adl-pci-hvm-x86-64-gcc-debug: > - *x86-64-test-needs > - alpine-3.12-gcc-debug > > +zen3p-smoke-x86-64-gcc-debug: > + extends: .zen3p-x86-64 > + script: > + - ./automation/scripts/qubes-x86-64.sh 2>&1 | tee ${LOGFILE} > + needs: > + - *x86-64-test-needs > + - alpine-3.12-gcc-debug > + > +zen3p-pci-hvm-x86-64-gcc-debug: > + extends: .zen3p-x86-64 > + script: > + - ./automation/scripts/qubes-x86-64.sh pci-hvm 2>&1 | tee ${LOGFILE} > + needs: > + - *x86-64-test-needs > + - alpine-3.12-gcc-debug > + > qemu-smoke-dom0-arm64-gcc: > extends: .qemu-arm64 > script: > -- > git-series 0.9.1 >
diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml index cb7fd5c272e9..81d027532cca 100644 --- a/automation/gitlab-ci/test.yaml +++ b/automation/gitlab-ci/test.yaml @@ -108,6 +108,16 @@ tags: - qubes-hw2 +.zen3p-x86-64: + # it's really similar to the above + extends: .adl-x86-64 + variables: + PCIDEV: "01:00.0" + PCIDEV_INTR: "MSI-X" + CONSOLE_OPTS: "console=com1 com1=115200,8n1,pci,msi" + tags: + - qubes-hw11 + # Test jobs build-each-commit-gcc: extends: .test-jobs-common @@ -176,6 +186,22 @@ adl-pci-hvm-x86-64-gcc-debug: - *x86-64-test-needs - alpine-3.12-gcc-debug +zen3p-smoke-x86-64-gcc-debug: + extends: .zen3p-x86-64 + script: + - ./automation/scripts/qubes-x86-64.sh 2>&1 | tee ${LOGFILE} + needs: + - *x86-64-test-needs + - alpine-3.12-gcc-debug + +zen3p-pci-hvm-x86-64-gcc-debug: + extends: .zen3p-x86-64 + script: + - ./automation/scripts/qubes-x86-64.sh pci-hvm 2>&1 | tee ${LOGFILE} + needs: + - *x86-64-test-needs + - alpine-3.12-gcc-debug + qemu-smoke-dom0-arm64-gcc: extends: .qemu-arm64 script:
This adds another physical runner to Gitlab-CI, running similar set of jobs that the Adler Lake one. The machine specifically is MinisForum UM773 Lite with AMD Ryzen 7 7735HS The PV passthrough test is skipped as currently it fails on this system with: (d1) Can't find new memory area for initrd needed due to E820 map conflict The S3 test is skipped as it currently fails - the system seems to suspend properly (power LED blinks), but when woken up the power LED gets back to solid on and the fan spins at top speed and but otherwise there is no signs of if life from the system (no output on the console, HDMI or anything else). Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> --- automation/gitlab-ci/test.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+)