diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2020-09-14 21:55:58 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-15 08:59:06 -0400 |
commit | 0e12575645785c6bc72473ae31cb31a626ce2bc7 (patch) | |
tree | 5b3f82b82bcf5e593920d8fe31af5a3720bda335 /.gitlab-ci.yml | |
parent | 00e5fda0063eaa20e9c3f6844ac88c64eb875f23 (diff) |
Azure/GitLab/Travis: Add SH4 r2dplus machine with various PCI ethernet options
Add SH4 R2Dplus machine configured to test various U-Boot PCI ethernet
options -- RTL8139, EEPRO100, AMD PCnet, DEC Tulip.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08696693f1..9ac2b336a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -359,6 +359,34 @@ qemu-x86_64 test.py: TEST_PY_TEST_SPEC: "not sleep" <<: *buildman_and_testpy_dfn +r2dplus_i82557c test.py: + tags: [ 'all' ] + variables: + TEST_PY_BD: "r2dplus" + TEST_PY_ID: "--id i82557c_qemu" + <<: *buildman_and_testpy_dfn + +r2dplus_pcnet test.py: + tags: [ 'all' ] + variables: + TEST_PY_BD: "r2dplus" + TEST_PY_ID: "--id pcnet_qemu" + <<: *buildman_and_testpy_dfn + +r2dplus_rtl8139 test.py: + tags: [ 'all' ] + variables: + TEST_PY_BD: "r2dplus" + TEST_PY_ID: "--id rtl8139_qemu" + <<: *buildman_and_testpy_dfn + +r2dplus_tulip test.py: + tags: [ 'all' ] + variables: + TEST_PY_BD: "r2dplus" + TEST_PY_ID: "--id tulip_qemu" + <<: *buildman_and_testpy_dfn + xilinx_zynq_virt test.py: tags: [ 'all' ] variables: |