diff options
author | Tom Rini <trini@konsulko.com> | 2021-10-14 21:31:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-14 21:31:29 -0400 |
commit | 5e48afcffe37ee6c5fbb06a2e4fc6c05efd099e4 (patch) | |
tree | bf9c65641eb8cfe3ebf4d78fa4bc35e3422ea461 | |
parent | 10cd8efe1a7eacd63907ba95bd8442bc2cdce461 (diff) | |
download | u-boot-TEST/update-nokia-rx51-test.zip u-boot-TEST/update-nokia-rx51-test.tar.gz u-boot-TEST/update-nokia-rx51-test.tar.bz2 |
CI: Switch running the nokia_rx51 test with in-container toolchainTEST/update-nokia-rx51-test
Instead of fetching an arm toolchain to use, run the test with the one
that's already in the container image.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .azure-pipelines.yml | 3 | ||||
-rw-r--r-- | .gitlab-ci.yml | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 53f86f5..d3352def 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -169,8 +169,7 @@ jobs: options: $(container_option) steps: - script: | - ./tools/buildman/buildman --fetch-arch arm - export PATH=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/:$PATH + export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH test/nokia_rx51_test.sh - job: test_py diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a3e2f0..4aeca31 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -177,8 +177,7 @@ Run binman, buildman, dtoc, Kconfig and patman testsuites: Run tests for Nokia RX-51 (aka N900): stage: testsuites script: - - ./tools/buildman/buildman --fetch-arch arm; - export PATH=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/:$PATH; + - export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH; test/nokia_rx51_test.sh # Test sandbox with test.py |