From be8819259417d63b389eb9ea6c00abd6aeb8e1c6 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Tue, 22 Jul 2025 14:30:40 +0200 Subject: [PATCH] Run FreebSD CI under 13.5 13.3 gives a 404 now. Also pulls in a 8.4 fix to include xxhash from the bundled location. Closes GH-19213. --- .github/actions/freebsd/action.yml | 2 +- ext/hash/php_hash_xxhash.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/freebsd/action.yml b/.github/actions/freebsd/action.yml index fd37e92bbe5..17446311bb8 100644 --- a/.github/actions/freebsd/action.yml +++ b/.github/actions/freebsd/action.yml @@ -9,7 +9,7 @@ runs: - name: FreeBSD uses: vmactions/freebsd-vm@v1 with: - release: '13.3' + release: '13.5' usesh: true copyback: false # Temporarily disable sqlite, as FreeBSD ships it with disabled double quotes. We'll need to fix our tests. diff --git a/ext/hash/php_hash_xxhash.h b/ext/hash/php_hash_xxhash.h index a1e8840ce27..ace70deedb0 100644 --- a/ext/hash/php_hash_xxhash.h +++ b/ext/hash/php_hash_xxhash.h @@ -18,7 +18,7 @@ #define PHP_HASH_XXHASH_H #define XXH_INLINE_ALL 1 -#include "xxhash.h" +#include "xxhash/xxhash.h" typedef struct { XXH32_state_t s;