From 2b017e49654e4b42fc1ef5f16dc73443638eb931 Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Tue, 11 Feb 2025 14:42:31 +0100 Subject: [PATCH] Fix building on Ubuntu 24.04 --- .github/workflows/ci.yml | 1 + package.json | 1 + replace-in-file.json | 5 +++++ 3 files changed, 7 insertions(+) create mode 100644 replace-in-file.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f348373..dd9505a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: with: path: | **/node_modules + build .rdf-test-suite-cache .rdf-test-suite-ldf-cache key: ${{ runner.os }}-${{ runner.node-version }}-test-modules-${{ hashFiles('**/package-lock.json') }} diff --git a/package.json b/package.json index 9953165..14a806e 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "eslint": "^5.3.0", "mocha": "^6.2.2", "precommit-hook": "^3.0.0", + "replace-in-file": "^8.3.0", "should": "^13.1.0", "@comunica/utils-bindings-factory": "^4.0.2" }, diff --git a/replace-in-file.json b/replace-in-file.json new file mode 100644 index 0000000..3e50602 --- /dev/null +++ b/replace-in-file.json @@ -0,0 +1,5 @@ +{ + "files": "deps/libhdt/src/util/StopWatch.cpp", + "from": "uint64_t", + "to": "unsigned long long" +}