mixdog 0.9.80 → 0.9.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -98,8 +98,11 @@ else
|
|
|
98
98
|
|
|
99
99
|
echo "==> Building pgvector"
|
|
100
100
|
cd pgvector
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
# Release assets must run on CPUs other than the GitHub runner that built
|
|
102
|
+
# them. pgvector defaults to -march=native, which can otherwise emit AVX
|
|
103
|
+
# instructions and crash with SIGILL ("Illegal instruction") downstream.
|
|
104
|
+
make OPTFLAGS="" PG_CONFIG="$PG_CONFIG" -j"$(nproc)"
|
|
105
|
+
make OPTFLAGS="" PG_CONFIG="$PG_CONFIG" install
|
|
103
106
|
fi
|
|
104
107
|
|
|
105
108
|
echo "==> Assembling runtime layout"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
|
-
"generated_at": "2026-07-
|
|
3
|
+
"generated_at": "2026-07-28T13:47:25.814Z",
|
|
4
4
|
"release_tag": "runtime-v0.4.0",
|
|
5
5
|
"pg": {
|
|
6
6
|
"major": 16,
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
},
|
|
23
23
|
"linux-arm64": {
|
|
24
24
|
"url": "https://github.com/tribgames/mixdog/releases/download/runtime-v0.4.0/mixdog-runtime-linux-arm64-pg16.4-pgvector0.8.2.tar.gz",
|
|
25
|
-
"sha256": "
|
|
26
|
-
"size":
|
|
25
|
+
"sha256": "ed578c24b16f5c703e7fe1634d5ad68ba7d49383641b6412993c043853344c5d",
|
|
26
|
+
"size": 22886000
|
|
27
27
|
},
|
|
28
28
|
"linux-x64": {
|
|
29
29
|
"url": "https://github.com/tribgames/mixdog/releases/download/runtime-v0.4.0/mixdog-runtime-linux-x64-pg16.4-pgvector0.8.2.tar.gz",
|
|
30
|
-
"sha256": "
|
|
31
|
-
"size":
|
|
30
|
+
"sha256": "6c6734db6f576ba2e7ffcf1afcb26364998159908590e8a6b95b748697ef46c2",
|
|
31
|
+
"size": 23296694
|
|
32
32
|
},
|
|
33
33
|
"win32-x64": {
|
|
34
34
|
"url": "https://github.com/tribgames/mixdog/releases/download/runtime-v0.4.0/mixdog-runtime-win32-x64-pg16.4-pgvector0.8.2.tar.gz",
|