Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/release-appimage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,20 +154,15 @@ jobs:
working-directory: cloudini_foxglove
run: npm ci

- name: Build Foxglove extension
- name: Package Foxglove extension (.foxe)
working-directory: cloudini_foxglove
run: npm run build

- name: Package Foxglove extension
run: |
cd cloudini_foxglove/dist
zip -r ../../cloudini-foxglove-${{ steps.get_version.outputs.VERSION }}.zip .
run: npm run package

- name: Upload Foxglove artifact
uses: actions/upload-artifact@v7
with:
name: foxglove-artifact
path: cloudini-foxglove-*.zip
path: cloudini_foxglove/release/*.foxe

create-release:
needs: [build-appimage, build-wasm, build-foxglove]
Expand All @@ -194,6 +189,6 @@ jobs:
files: |
appimage-artifact/cloudini_rosbag_converter-*.AppImage
wasm-artifact/cloudini-wasm-*.zip
foxglove-artifact/cloudini-foxglove-*.zip
foxglove-artifact/*.foxe
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion cloudini_foxglove/src/PointCloudConverter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const convertPointCloudWasm = (cloud: CompressedPointCloud): PointCloud =
point_step: cloud.point_step,
row_step: cloud.point_step * cloud.width,
is_dense: cloud.is_dense,
data: new Uint8Array(),
data: new Uint8Array(0),
};

// Nothing to do, the point cloud is empty
Expand Down
3 changes: 2 additions & 1 deletion cloudini_foxglove/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"esModuleInterop": true,
"resolveJsonModule": true,
"module": "esnext",
"moduleResolution": "node"
"moduleResolution": "node",
"ignoreDeprecations": "6.0"
}
}
Loading