Skip to content

Commit ccb20fe

Browse files
simbit18pkarashchenko
authored andcommitted
tools/ci/docker/linux/Dockerfile: Restarting the Docker-Linux workflow a new attempt
tools/ci/docker/linux/Dockerfile revert from --strip-components=1 to --strip-components 1 .github/workflows/docker_linux.yml added -> workflow_dispatch: Manual execution of a workflow https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow
1 parent 53795fd commit ccb20fe

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/docker_linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
name: Docker-Linux
1414

1515
on:
16+
workflow_dispatch:
1617
push:
1718
# Publish `master` as Docker `latest` image.
1819
branches:

tools/ci/docker/linux/Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,12 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm
140140
# Download the latest ARM clang toolchain prebuilt by ARM
141141
RUN mkdir -p clang-arm-none-eabi && \
142142
curl -s -L "https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-17.0.1/LLVMEmbeddedToolchainForArm-17.0.1-Linux-x86_64.tar.xz" \
143-
| tar -C clang-arm-none-eabi --strip-components=1 -xJ
143+
| tar -C clang-arm-none-eabi --strip-components 1 -xJ
144144

145145
# Download the latest ARM GCC toolchain prebuilt by ARM
146146
RUN mkdir -p gcc-arm-none-eabi && \
147147
curl -s -L "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi.tar.xz" \
148-
| tar -C gcc-arm-none-eabi --strip-components=1 -xJ
148+
| tar -C gcc-arm-none-eabi --strip-components 1 -xJ
149149

150150
###############################################################################
151151
# Build image for tool required by ARM64 builds
@@ -154,7 +154,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-arm64
154154
# Download the latest ARM64 GCC toolchain prebuilt by ARM
155155
RUN mkdir gcc-aarch64-none-elf && \
156156
curl -s -L "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.Rel1/binrel/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf.tar.xz" \
157-
| tar -C gcc-aarch64-none-elf --strip-components=1 -xJ
157+
| tar -C gcc-aarch64-none-elf --strip-components 1 -xJ
158158

159159
###############################################################################
160160
# Build image for tool required by AVR32 builds
@@ -251,7 +251,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-sparc
251251
# Download the SPARC GCC toolchain prebuilt by Gaisler
252252
RUN mkdir -p sparc-gaisler-elf-gcc && \
253253
curl -s -L "https://www.gaisler.com/anonftp/bcc2/bin/bcc-2.1.0-gcc-linux64.tar.xz" \
254-
| tar -C sparc-gaisler-elf-gcc --strip-components=1 -xJ
254+
| tar -C sparc-gaisler-elf-gcc --strip-components 1 -xJ
255255

256256
###############################################################################
257257
# Build image for tool required by ESP32 builds
@@ -260,15 +260,15 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-esp32
260260
# Download the latest ESP32 GCC toolchain prebuilt by Espressif
261261
RUN mkdir -p xtensa-esp32-elf-gcc && \
262262
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
263-
| tar -C xtensa-esp32-elf-gcc --strip-components=1 -xJ
263+
| tar -C xtensa-esp32-elf-gcc --strip-components 1 -xJ
264264

265265
RUN mkdir -p xtensa-esp32s2-elf-gcc && \
266266
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s2-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
267-
| tar -C xtensa-esp32s2-elf-gcc --strip-components=1 -xJ
267+
| tar -C xtensa-esp32s2-elf-gcc --strip-components 1 -xJ
268268

269269
RUN mkdir -p xtensa-esp32s3-elf-gcc && \
270270
curl -s -L "https://github.com/espressif/crosstool-NG/releases/download/esp-12.2.0_20230208/xtensa-esp32s3-elf-12.2.0_20230208-x86_64-linux-gnu.tar.xz" \
271-
| tar -C xtensa-esp32s3-elf-gcc --strip-components=1 -xJ
271+
| tar -C xtensa-esp32s3-elf-gcc --strip-components 1 -xJ
272272

273273
RUN echo "ESP Binaries: 2022/01/26"
274274
RUN mkdir -p /tools/blobs && cd /tools/blobs \
@@ -288,7 +288,7 @@ FROM nuttx-toolchain-base AS nuttx-toolchain-wasm
288288
# Download the latest WASI-enabled WebAssembly C/C++ toolchain prebuilt by WASM
289289
RUN mkdir -p wasi-sdk && \
290290
curl -s -L "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz" \
291-
| tar -C wasi-sdk --strip-components=1 -xz
291+
| tar -C wasi-sdk --strip-components 1 -xz
292292

293293
# Download the latest "wamrc" AOT compiler prebuilt by WAMR
294294
RUN mkdir -p wamrc && \

0 commit comments

Comments
 (0)