Skip to content

Commit 0c88f10

Browse files
updating docker images
1 parent 332c0f5 commit 0c88f10

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/ciimage/Dockerfile.debian

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Use a specific Debian base image
2-
FROM debian:buster
1+
# Use the latest Debian base image
2+
FROM debian:latest
33

44
# Set environment variables to avoid interaction
55
ENV DEBIAN_FRONTEND=noninteractive \
@@ -27,8 +27,8 @@ RUN apt-get update && \
2727
apt-get clean && \
2828
rm -rf /var/lib/apt/lists/*
2929

30-
# Install Meson, Ninja, and Cython using pip
31-
RUN python3 -m pip install --no-cache-dir meson ninja
30+
# Install Meson and Ninja
31+
RUN python3 -m pip install --no-cache-dir meson==1.3.0 ninja==1.10.2
3232

3333
# Set environment variables
3434
ENV CC=/usr/bin/clang

.github/ciimage/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN dnf -y update && \
2121
dnf clean all
2222

2323
# Install Meson and Ninja using pip
24-
RUN python3 -m pip install --no-cache-dir meson ninja
24+
RUN python3 -m pip install --no-cache-dir meson==1.3.0 ninja==1.10.2
2525

2626
# Set environment variables
2727
ENV CC=/usr/bin/clang

.github/ciimage/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN apt-get update && \
2929
rm -rf /var/lib/apt/lists/*
3030

3131
# Install Meson, Ninja, and Cython using pip
32-
RUN python3 -m pip install --no-cache-dir meson ninja
32+
RUN python3 -m pip install --no-cache-dir meson==1.3.0 ninja==1.10.2
3333

3434
# Set environment variables
3535
ENV CC=/usr/bin/gcc

code/logic/testing.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ const char *timeout_messages[] = {
281281

282282
jmp_buf test_jump_buffer; // This will hold the jump buffer for longjmp
283283

284+
284285
// Custom implementation of strdup to avoid warnings on some platforms
285286
char *_custom_fossil_test_strdup(const char *str) {
286287
size_t len = strlen(str) + 1;

0 commit comments

Comments
 (0)