Skip to content

Commit 061b1a3

Browse files
committed
CI: Avoid hashFiles to work around macOS bug
1 parent 6e9599f commit 061b1a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/compile_sqlite.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
id: cache_build
1818
with:
1919
path: sqlite-src/
20-
key: sqlite-src-${{ hashFiles('tool/sqlite_build_id') }}
20+
# TODO: Migrate back to ${{ hashFiles('tool/sqlite_build_id') }} after https://github.com/orgs/community/discussions/180160 gets fixed.
21+
key: sqlite-src-5fecfe0668c6580f390a5bf1a2485e989cab0094b3b9725a8bd2ee3f0d378701
2122

2223
- uses: dart-lang/setup-dart@v1
2324
if: steps.cache_build.outputs.cache-hit != 'true'
@@ -49,7 +50,8 @@ jobs:
4950
id: cache_build
5051
with:
5152
path: sqlite-compiled
52-
key: sqlite-prebuilt-${{ runner.os }}-${{ hashFiles('tool/sqlite_build_id') }}
53+
# TODO: Migrate back to ${{ hashFiles('tool/sqlite_build_id') }} after https://github.com/orgs/community/discussions/180160 gets fixed.
54+
key: sqlite-prebuilt-${{ runner.os }}-5fecfe0668c6580f390a5bf1a2485e989cab0094b3b9725a8bd2ee3f0d378701
5355

5456
- name: Download sqlite3 sources
5557
if: steps.cache_build.outputs.cache-hit != 'true'
@@ -90,7 +92,8 @@ jobs:
9092
id: cache_build
9193
with:
9294
path: sqlite3_wasm_build/out/
93-
key: sqlite-prebuilt-wasm-${{ hashFiles('tool/sqlite_build_id') }}
95+
# TODO: Migrate back to ${{ hashFiles('tool/sqlite_build_id') }} after https://github.com/orgs/community/discussions/180160 gets fixed.
96+
key: sqlite-prebuilt-wasm-5fecfe0668c6580f390a5bf1a2485e989cab0094b3b9725a8bd2ee3f0d378701
9497

9598
# clang 18 that ships on ubuntu crashes when compiling the wasm sources
9699
- name: Install LLVM and Clang

tool/sqlite_build_id

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)