Fix missing error libgccjit in CI
This commit is contained in:
parent
ded81de066
commit
ead5dffeec
@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
xz-utils \
|
xz-utils \
|
||||||
nodejs \
|
nodejs \
|
||||||
mingw-w64 \
|
mingw-w64 \
|
||||||
|
libgccjit-12-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install powershell (universal package) so we can test x.ps1 on Linux
|
# Install powershell (universal package) so we can test x.ps1 on Linux
|
||||||
@ -34,6 +35,9 @@ RUN curl -sL "https://github.com/PowerShell/PowerShell/releases/download/v7.3.1/
|
|||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
# Make `libgccjit.so` accessible.
|
||||||
|
RUN ln -s /usr/lib/gcc/x86_64-linux-gnu/12/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
|
||||||
|
|
||||||
# We are disabling CI LLVM since this builder is intentionally using a host
|
# We are disabling CI LLVM since this builder is intentionally using a host
|
||||||
# LLVM, rather than the typical src/llvm-project LLVM.
|
# LLVM, rather than the typical src/llvm-project LLVM.
|
||||||
ENV NO_DOWNLOAD_CI_LLVM 1
|
ENV NO_DOWNLOAD_CI_LLVM 1
|
||||||
|
@ -15,6 +15,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
sudo \
|
sudo \
|
||||||
xz-utils \
|
xz-utils \
|
||||||
tidy \
|
tidy \
|
||||||
|
libgccjit-12-dev \
|
||||||
\
|
\
|
||||||
# Install dependencies for chromium browser
|
# Install dependencies for chromium browser
|
||||||
gconf-service \
|
gconf-service \
|
||||||
@ -61,6 +62,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
# Make `libgccjit.so` accessible.
|
||||||
|
RUN ln -s /usr/lib/gcc/x86_64-linux-gnu/12/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
|
||||||
|
|
||||||
COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/
|
COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/
|
||||||
|
|
||||||
RUN curl -sL https://nodejs.org/dist/v14.20.0/node-v14.20.0-linux-x64.tar.xz | tar -xJ
|
RUN curl -sL https://nodejs.org/dist/v14.20.0/node-v14.20.0-linux-x64.tar.xz | tar -xJ
|
||||||
|
Loading…
Reference in New Issue
Block a user