Skip to content

Commit 64f5391

Browse files
committed
Add pkgconfig, immer, json
1 parent df4818f commit 64f5391

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/matrix.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"include": [
33
{
4-
"DOCKER_TAG": "2024.03.0",
4+
"DOCKER_TAG": "2024.08.0",
55
"OPERATING_SYSTEM_TAG": "20.04",
66
"LLVM_VERSION_MAJOR": "14"
77
}

docker/Dockerfile_base

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ WORKDIR docker
2020
# Install required system packages
2121
RUN apt update
2222
RUN DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends sudo file python3-dateutil wget fakeroot libssl-dev build-essential \
23-
software-properties-common
23+
software-properties-common pkg-config
2424
RUN echo "check_certificate = off" > /etc/wgetrc
2525

2626
# We use C++ 17 for UnitTestBot, it is available in gcc-9; default gcc for ubuntu:18.04 is gcc-7
@@ -217,6 +217,8 @@ RUN ./configure --make-llvm-lib && make -j`nproc`
217217

218218
# Download library for access private members
219219
RUN git clone https://github.com/martong/access_private.git $UTBOT_ALL/access_private
220+
RUN git clone https://github.com/arximboldi/immer.git $UTBOT_ALL/immer
221+
RUN git clone https://github.com/nlohmann/json.git $UTBOT_ALL/json
220222

221223
RUN apt autoclean
222224

0 commit comments

Comments
 (0)