[llvm] [infra] Add git to Linux container (PR #82687)
Natalie Chouinard via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 22 13:08:21 PST 2024
https://github.com/sudonatalie created https://github.com/llvm/llvm-project/pull/82687
Fixes #82646
>From 69756abf626cb36bcfd966588284076041ba8e49 Mon Sep 17 00:00:00 2001
From: Natalie Chouinard <chouinard at google.com>
Date: Thu, 22 Feb 2024 21:07:24 +0000
Subject: [PATCH] [infra] Add git to Linux container
Fixes #82646
---
.github/workflows/containers/github-action-ci/stage2.Dockerfile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/containers/github-action-ci/stage2.Dockerfile b/.github/workflows/containers/github-action-ci/stage2.Dockerfile
index e1a06cb68a589e..0ca0da87734c4c 100644
--- a/.github/workflows/containers/github-action-ci/stage2.Dockerfile
+++ b/.github/workflows/containers/github-action-ci/stage2.Dockerfile
@@ -12,11 +12,13 @@ COPY --from=stage2-toolchain $LLVM_SYSROOT $LLVM_SYSROOT
# Need to install curl for hendrikmuhs/ccache-action
# Need nodejs for some of the GitHub actions.
# Need perl-modules for clang analyzer tests.
+# Need git for SPIRV-Tools tests.
RUN apt-get update && \
apt-get install -y \
binutils \
cmake \
curl \
+ git \
libstdc++-11-dev \
ninja-build \
nodejs \
More information about the llvm-commits
mailing list