Skip to content

Commit 63ed723

Browse files
simbit18xiaoxiang781216
authored andcommitted
tools/ci/docker/linux/Dockerfile: Restarting the Docker-Linux workflow
The docker image has not been updated we currently use that one from 22 days ago. It seems that the error encountered is due to an incomplete download. It will probably work fine if downloaded again.. https://github.com/apache/nuttx/actions/runs/10619683045/job/29437799464#step:7:1339 28.31 28.31 gzip: stdin: unexpected end of file 28.31 tar: Unexpected EOF in archive 28.32 tar: Unexpected EOF in archive 28.32 tar: Error is not recoverable: exiting now
1 parent 32801d3 commit 63ed723

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/ci/docker/linux/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-riscv
242242
# Download the latest RISCV GCC toolchain prebuilt by xPack
243243
RUN mkdir -p riscv-none-elf-gcc && \
244244
curl -s -L "https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v13.2.0-2/xpack-riscv-none-elf-gcc-13.2.0-2-linux-x64.tar.gz" \
245-
| tar -C riscv-none-elf-gcc --strip-components=1 -xz
245+
| tar -C riscv-none-elf-gcc --strip-components 1 -xz
246246

247247
###############################################################################
248248
# Build image for tool required by SPARC builds
@@ -411,6 +411,7 @@ WORKDIR /tools
411411
# Pull in the tools we just built for nuttx
412412
COPY --from=nuttx-tools /tools/bloaty/ bloaty/
413413
ENV PATH="/tools/bloaty/bin:$PATH"
414+
414415
COPY --from=nuttx-tools /tools/kconfig-frontends/ kconfig-frontends/
415416
ENV PATH="/tools/kconfig-frontends/bin:$PATH"
416417

@@ -524,6 +525,7 @@ RUN mkdir -p /tools/ccache/bin && \
524525
ln -sf `which ccache` /tools/ccache/bin/xtensa-esp32s2-elf-g++ && \
525526
ln -sf `which ccache` /tools/ccache/bin/xtensa-esp32s3-elf-gcc && \
526527
ln -sf `which ccache` /tools/ccache/bin/xtensa-esp32s3-elf-g++
528+
527529
ENV PATH="/tools/ccache/bin:$PATH"
528530

529531
CMD [ "/bin/bash" ]

0 commit comments

Comments
 (0)