clawdex-mobile 5.0.0 → 5.0.1
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/.artifacts/bridge-binaries/bridge-binaries-darwin-arm64/codex-rust-bridge +0 -0
- package/.artifacts/bridge-binaries/bridge-binaries-darwin-x64/codex-rust-bridge +0 -0
- package/{codex-rust-bridge → .artifacts/bridge-binaries/bridge-binaries-linux-x64/codex-rust-bridge} +0 -0
- package/{codex-rust-bridge.exe → .artifacts/bridge-binaries/bridge-binaries-win32-x64/codex-rust-bridge.exe} +0 -0
- package/.github/workflows/npm-release.yml +34 -2
- package/apps/mobile/app.json +1 -1
- package/apps/mobile/package.json +1 -1
- package/package.json +1 -1
- package/services/rust-bridge/Cargo.lock +1 -1
- package/services/rust-bridge/Cargo.toml +1 -1
- package/services/rust-bridge/package.json +1 -1
- package/vendor/bridge-binaries/darwin-arm64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/darwin-x64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/linux-x64/codex-rust-bridge +0 -0
- package/vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe +0 -0
package/{codex-rust-bridge → .artifacts/bridge-binaries/bridge-binaries-linux-x64/codex-rust-bridge}
RENAMED
|
Binary file
|
|
Binary file
|
|
@@ -104,8 +104,31 @@ jobs:
|
|
|
104
104
|
uses: actions/download-artifact@v7
|
|
105
105
|
with:
|
|
106
106
|
pattern: bridge-binaries-*
|
|
107
|
-
path: .
|
|
108
|
-
|
|
107
|
+
path: .artifacts/bridge-binaries
|
|
108
|
+
|
|
109
|
+
- name: Restage packaged bridge binaries
|
|
110
|
+
run: |
|
|
111
|
+
rm -rf vendor/bridge-binaries
|
|
112
|
+
mkdir -p vendor/bridge-binaries
|
|
113
|
+
for target in darwin-arm64 darwin-x64 linux-x64 win32-x64; do
|
|
114
|
+
case "$target" in
|
|
115
|
+
win32-x64) binary_name="codex-rust-bridge.exe" ;;
|
|
116
|
+
*) binary_name="codex-rust-bridge" ;;
|
|
117
|
+
esac
|
|
118
|
+
source_path=".artifacts/bridge-binaries/bridge-binaries-${target}/${binary_name}"
|
|
119
|
+
if [ ! -f "$source_path" ]; then
|
|
120
|
+
echo "Missing downloaded bridge artifact for ${target}: ${source_path}"
|
|
121
|
+
exit 1
|
|
122
|
+
fi
|
|
123
|
+
node scripts/bridge-binary.js stage --target "$target" --from "$source_path"
|
|
124
|
+
done
|
|
125
|
+
|
|
126
|
+
- name: Verify packaged bridge bundle layout
|
|
127
|
+
run: |
|
|
128
|
+
test -f vendor/bridge-binaries/darwin-arm64/codex-rust-bridge
|
|
129
|
+
test -f vendor/bridge-binaries/darwin-x64/codex-rust-bridge
|
|
130
|
+
test -f vendor/bridge-binaries/linux-x64/codex-rust-bridge
|
|
131
|
+
test -f vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe
|
|
109
132
|
|
|
110
133
|
- name: Verify Rust bridge compiles
|
|
111
134
|
working-directory: services/rust-bridge
|
|
@@ -134,6 +157,15 @@ jobs:
|
|
|
134
157
|
- name: Show package contents
|
|
135
158
|
run: npm pack --dry-run
|
|
136
159
|
|
|
160
|
+
- name: Verify tarball contains packaged bridge targets
|
|
161
|
+
run: |
|
|
162
|
+
TMPDIR="$(mktemp -d)"
|
|
163
|
+
TARBALL="$(npm pack --silent --pack-destination "$TMPDIR" | tail -n 1)"
|
|
164
|
+
tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/darwin-arm64/codex-rust-bridge$'
|
|
165
|
+
tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/darwin-x64/codex-rust-bridge$'
|
|
166
|
+
tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/linux-x64/codex-rust-bridge$'
|
|
167
|
+
tar -tzf "$TMPDIR/$TARBALL" | grep -q '^package/vendor/bridge-binaries/win32-x64/codex-rust-bridge.exe$'
|
|
168
|
+
|
|
137
169
|
- name: Resolve publish target
|
|
138
170
|
id: publish_target
|
|
139
171
|
run: |
|
package/apps/mobile/app.json
CHANGED
package/apps/mobile/package.json
CHANGED
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|