Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Fossil Logic Layer Pull Request
# Fossil Test - Pull Request

## Description
<!-- Briefly describe the purpose and scope of this pull request. -->

## Changes
<!-- List the changes introduced by this pull request. -->

## Testing
<!-- Describe the testing process or steps taken to ensure the changes work as expected. -->

Expand Down
6 changes: 3 additions & 3 deletions .github/ciimage/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the latest Debian base image
FROM debian:bullseye
# Use a specific Debian base image
FROM debian:buster

# Set environment variables to avoid interaction
ENV DEBIAN_FRONTEND=noninteractive \
Expand Down Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

# Install Meson and Ninja
RUN apt-get update && python3 -m pip install --no-cache-dir meson==1.3.0 ninja==1.10.2
RUN python3 -m pip install --no-cache-dir meson ninja==1.10.2

# Set environment variables
ENV CC=/usr/bin/clang
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meson_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:

strategy:
matrix:
distro: [ubuntu, fedora, archlinux]
distro: [ubuntu, fedora, archlinux, debian]

steps:
- name: Checkout code
Expand Down
1 change: 1 addition & 0 deletions code/logic/marking.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <float.h>
#include <stdarg.h>


#if defined(_WIN32)
#include <windows.h>
static LARGE_INTEGER frequency;
Expand Down