From 39579466d44ceb6725b2e160b0cb2c19b652a506 Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Wed, 25 Jun 2025 17:47:49 +0200 Subject: [PATCH 1/2] chore: install deps on gha runner image --- containers/actions-runner/Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/containers/actions-runner/Dockerfile b/containers/actions-runner/Dockerfile index a826c24a8..ca194096e 100644 --- a/containers/actions-runner/Dockerfile +++ b/containers/actions-runner/Dockerfile @@ -14,9 +14,9 @@ ENV HOMEBREW_NO_ANALYTICS=1 \ USER root RUN \ - apt-get update && apt-get upgrade -y \ - && \ - apt-get install -y --no-install-recommends \ + add-apt-repository ppa:rmescandon/yq \ + && apt-get update && apt-get upgrade -y \ + && apt-get install -y --no-install-recommends \ ca-certificates \ gcc \ jo \ @@ -28,6 +28,10 @@ RUN \ g++ \ cmake \ libgl1 \ + yq \ + xz-utils \ + ninja-build \ + zstd \ && mkdir -p -m 755 /etc/apt/keyrings \ && out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \ && cat $out | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \ From e415bc4ea614e707af31be4d959c121692782366 Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Wed, 25 Jun 2025 17:59:16 +0200 Subject: [PATCH 2/2] chore: add android-sdk dep --- containers/actions-runner/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/actions-runner/Dockerfile b/containers/actions-runner/Dockerfile index ca194096e..a2e32b7f7 100644 --- a/containers/actions-runner/Dockerfile +++ b/containers/actions-runner/Dockerfile @@ -32,6 +32,7 @@ RUN \ xz-utils \ ninja-build \ zstd \ + android-sdk \ && mkdir -p -m 755 /etc/apt/keyrings \ && out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \ && cat $out | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \