The "install_tools" function in tools/ci/cibuild.sh should be excuted firstly to install sparc-gcc-toolchain,isn't it? but there's some error when excute "install_tools" function ------------------ Original ------------------ From: "Brennan Ashton"<bash...@brennanashton.com>; Date: Wed, Feb 2, 2022 04:17 PM To: "dev"<dev@nuttx.apache.org>;
Subject: Re: enable the excute of install_tools in cibuild.sh The ci uses the docker container. You will want to submit a PR updating that and have that merge first. https://github.com/apache/incubator-nuttx/blob/master/tools/ci/docker/linux/Dockerfile On Tue, Feb 1, 2022, 11:37 PM fft <f...@feedforward.com.cn> wrote: > Hi team's > I'm try to add sparc to the daily ci,I add code to tools/ci/cibuild.sh > and&nbsp; tools/ci/testlist/other.dat,but when i start&nbsp; pull > requests,there's ci check error,beacuse "install_tools" function was not > executed,what resulte the build of xx3803:nsh can't find > sparc-gaisler-elf-gcc,to solve this problem,i change ./cibuild.sh -A -c > testlist/${{matrix.boards}}.dat to ./cibuild.sh -A -c -i > testlist/${{matrix.boards}}.dat in build.yml, but the excute of > > function install_tools { > &nbsp; pushd . > &nbsp; for func in ${install}; do > &nbsp;&nbsp;&nbsp; ${func} > &nbsp; done > &nbsp; popd > > &nbsp; echo PATH="${EXTRA_PATH}"/"${PATH}" &gt; "${prebuilt}"/env.sh > } > has other error when install kconfig-frontends > > > https://github.com/apache/incubator-nuttx/runs/5032993342?check_suite_focus=true > > how solve this problem? > Best regards, > Zou