File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 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
55ENV 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
3434ENV CC=/usr/bin/clang
Original file line number Diff line number Diff 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
2727ENV CC=/usr/bin/clang
Original file line number Diff line number Diff 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
3535ENV CC=/usr/bin/gcc
Original file line number Diff line number Diff line change @@ -281,6 +281,7 @@ const char *timeout_messages[] = {
281281
282282jmp_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
285286char * _custom_fossil_test_strdup (const char * str ) {
286287 size_t len = strlen (str ) + 1 ;
You can’t perform that action at this time.
0 commit comments