From 54a70a355a5f2f7e3457960508b64a06c519d6b0 Mon Sep 17 00:00:00 2001 From: Clayton Chew <30117799+claytonchew@users.noreply.github.com> Date: Thu, 12 Sep 2024 15:34:29 +0800 Subject: [PATCH] fix: Do not move externals dir --- runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile | 1 - runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile | 1 - runner/actions-runner.ubuntu-20.04.dockerfile | 1 - runner/actions-runner.ubuntu-22.04.dockerfile | 1 - 4 files changed, 4 deletions(-) diff --git a/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile b/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile index 1e65c8bc6a..f157c481ca 100644 --- a/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile +++ b/runner/actions-runner-dind-rootless.ubuntu-20.04.dockerfile @@ -86,7 +86,6 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \ && tar xzf ./runner.tar.gz \ && rm runner.tar.gz \ && ./bin/installdependencies.sh \ - && mv ./externals ./externalstmp \ # libyaml-dev is required for ruby/setup-ruby action. # It is installed after installdependencies.sh and before removing /var/lib/apt/lists # to avoid rerunning apt-update on its own. diff --git a/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile b/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile index 0639ccdf45..81921ca369 100644 --- a/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile +++ b/runner/actions-runner-dind-rootless.ubuntu-22.04.dockerfile @@ -64,7 +64,6 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \ && tar xzf ./runner.tar.gz \ && rm runner.tar.gz \ && ./bin/installdependencies.sh \ - && mv ./externals ./externalstmp \ # libyaml-dev is required for ruby/setup-ruby action. # It is installed after installdependencies.sh and before removing /var/lib/apt/lists # to avoid rerunning apt-update on its own. diff --git a/runner/actions-runner.ubuntu-20.04.dockerfile b/runner/actions-runner.ubuntu-20.04.dockerfile index 142ca3ace6..bf6f2119c7 100644 --- a/runner/actions-runner.ubuntu-20.04.dockerfile +++ b/runner/actions-runner.ubuntu-20.04.dockerfile @@ -77,7 +77,6 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \ && tar xzf ./runner.tar.gz \ && rm runner.tar.gz \ && ./bin/installdependencies.sh \ - && mv ./externals ./externalstmp \ # libyaml-dev is required for ruby/setup-ruby action. # It is installed after installdependencies.sh and before removing /var/lib/apt/lists # to avoid rerunning apt-update on its own. diff --git a/runner/actions-runner.ubuntu-22.04.dockerfile b/runner/actions-runner.ubuntu-22.04.dockerfile index a8d31e3984..a4aeb013c2 100644 --- a/runner/actions-runner.ubuntu-22.04.dockerfile +++ b/runner/actions-runner.ubuntu-22.04.dockerfile @@ -54,7 +54,6 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \ && tar xzf ./runner.tar.gz \ && rm runner.tar.gz \ && ./bin/installdependencies.sh \ - && mv ./externals ./externalstmp \ # libyaml-dev is required for ruby/setup-ruby action. # It is installed after installdependencies.sh and before removing /var/lib/apt/lists # to avoid rerunning apt-update on its own.