From 798c62984a032719230e6c529eedf59819ef432c Mon Sep 17 00:00:00 2001 From: Unai Sainz-Estebanez Date: Mon, 23 Dec 2024 10:47:28 +0100 Subject: [PATCH] Add --no-overwrite-dir flag to urv containerfile Container building is failing because of permissions errors. I found this solution at: https://unix.stackexchange.com/questions/210371/untar-error-cannot-change-mode-to-rwxr-sr-x --- .github/urv-toolchain-spec_def.containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/urv-toolchain-spec_def.containerfile b/.github/urv-toolchain-spec_def.containerfile index 40ea12f..ad8051f 100755 --- a/.github/urv-toolchain-spec_def.containerfile +++ b/.github/urv-toolchain-spec_def.containerfile @@ -20,7 +20,7 @@ RUN apt-get update -qq \ && apt-get install -y xz-utils \ && apt-get install -y make \ && curl -L -o riscv-11.2-small.tgz https://ohwr.org/project/wrpc-sw/wikis/uploads/9f9224d2249848ed3e854636de9c08dc/riscv-11.2-small.tgz \ -&& tar xzvf riscv-11.2-small.tgz -C . --no-same-owner \ +&& tar xzvf riscv-11.2-small.tgz -C . --no-same-owner --no-overwrite-dir\ && export CROSS_COMPILE="/riscv-11.2-small/bin/riscv32-elf-" \ && apt-get install -y git \ && git clone --recursive https://ohwr.org/project/wrpc-sw \