From 1bc1b0e9bd0180f3af723ede4dcfd9cca4388578 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Tue, 25 Aug 2026 11:13:24 +0200 Subject: [PATCH] Fix Firecrawl install: add ccache dependency for koffi native build (#16746) * Fix firecrawl * Add ccache to dependencies in firecrawl.sh --- ct/firecrawl.sh | 2 +- install/firecrawl-install.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/firecrawl.sh b/ct/firecrawl.sh index 928e39129..2cbf32edb 100644 --- a/ct/firecrawl.sh +++ b/ct/firecrawl.sh @@ -30,7 +30,7 @@ function update_script() { exit fi - ensure_dependencies build-essential + ensure_dependencies build-essential ccache if check_for_gh_release "firecrawl" "firecrawl/firecrawl"; then msg_info "Stopping Services" diff --git a/install/firecrawl-install.sh b/install/firecrawl-install.sh index 96bcaa8ba..9ef46523e 100644 --- a/install/firecrawl-install.sh +++ b/install/firecrawl-install.sh @@ -16,6 +16,7 @@ update_os msg_info "Installing Dependencies" $STD apt install -y \ build-essential \ + ccache \ cmake \ git \ nftables \