CI: Enable qemu_sbsa
Add QEMU's SBSA ref board to azure pipelines and gitlab CI to run tests on it. TEST: Run on Azure pipelines and confirmed that tests succeed. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:

committed by
Tom Rini

parent
fa888d5319
commit
25081abf08
@@ -250,6 +250,11 @@ stages:
|
|||||||
wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
|
wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
|
||||||
export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
|
export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
|
||||||
fi
|
fi
|
||||||
|
if [[ "\${TEST_PY_BD}" == "qemu-arm-sbsa" ]]; then
|
||||||
|
wget -O /tmp/bl1.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/bl1.bin;
|
||||||
|
wget -O /tmp/fip.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/fip.bin;
|
||||||
|
export BINMAN_INDIRS=/tmp
|
||||||
|
fi
|
||||||
# the below corresponds to .gitlab-ci.yml "script"
|
# the below corresponds to .gitlab-ci.yml "script"
|
||||||
cd \${WORK_DIR}
|
cd \${WORK_DIR}
|
||||||
export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
|
export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
|
||||||
@@ -415,6 +420,9 @@ stages:
|
|||||||
qemu_arm64:
|
qemu_arm64:
|
||||||
TEST_PY_BD: "qemu_arm64"
|
TEST_PY_BD: "qemu_arm64"
|
||||||
TEST_PY_TEST_SPEC: "not sleep"
|
TEST_PY_TEST_SPEC: "not sleep"
|
||||||
|
qemu_arm_sbsa_ref:
|
||||||
|
TEST_PY_BD: "qemu-arm-sbsa"
|
||||||
|
TEST_PY_TEST_SPEC: "not sleep"
|
||||||
qemu_m68k:
|
qemu_m68k:
|
||||||
TEST_PY_BD: "M5208EVBE"
|
TEST_PY_BD: "M5208EVBE"
|
||||||
TEST_PY_ID: "--id qemu"
|
TEST_PY_ID: "--id qemu"
|
||||||
|
@@ -39,6 +39,11 @@ stages:
|
|||||||
wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
|
wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
|
||||||
export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
|
export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
|
||||||
fi
|
fi
|
||||||
|
- if [[ "${TEST_PY_BD}" == "qemu-arm-sbsa" ]]; then
|
||||||
|
wget -O /tmp/bl1.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/bl1.bin;
|
||||||
|
wget -O /tmp/fip.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/fip.bin;
|
||||||
|
export BINMAN_INDIRS=/tmp
|
||||||
|
fi
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- cp -v /tmp/${TEST_PY_BD}/*.{html,css,xml} .
|
- cp -v /tmp/${TEST_PY_BD}/*.{html,css,xml} .
|
||||||
@@ -344,6 +349,12 @@ qemu_arm64 test.py:
|
|||||||
TEST_PY_TEST_SPEC: "not sleep"
|
TEST_PY_TEST_SPEC: "not sleep"
|
||||||
<<: *buildman_and_testpy_dfn
|
<<: *buildman_and_testpy_dfn
|
||||||
|
|
||||||
|
qemu_arm_sbsa test.py:
|
||||||
|
variables:
|
||||||
|
TEST_PY_BD: "qemu-arm-sbsa"
|
||||||
|
TEST_PY_TEST_SPEC: "not sleep"
|
||||||
|
<<: *buildman_and_testpy_dfn
|
||||||
|
|
||||||
qemu_m68k test.py:
|
qemu_m68k test.py:
|
||||||
variables:
|
variables:
|
||||||
TEST_PY_BD: "M5208EVBE"
|
TEST_PY_BD: "M5208EVBE"
|
||||||
|
Reference in New Issue
Block a user