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
15 changes: 0 additions & 15 deletions .github/workflows/ppa2204UbuntuLatest.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![VTK9 + Dicom build status](https://github.com/eidelen/DicomToMesh/actions/workflows/cppVTK9Dicom.yml/badge.svg) ![GUI Qt5 build status](https://github.com/eidelen/DicomToMesh/actions/workflows/cppVTK9DicomGUI.yml/badge.svg) ![PPA Ubuntu 24.04 status](https://github.com/eidelen/DicomToMesh/actions/workflows/ppaUbuntuLatest.yml/badge.svg) ![PPA Ubuntu 22.04 status](https://github.com/eidelen/DicomToMesh/actions/workflows/ppa2204UbuntuLatest.yml/badge.svg)
![VTK9 + Dicom build status](https://github.com/eidelen/DicomToMesh/actions/workflows/cppVTK9Dicom.yml/badge.svg) ![GUI Qt5 build status](https://github.com/eidelen/DicomToMesh/actions/workflows/cppVTK9DicomGUI.yml/badge.svg) ![PPA Installations Ubuntu status](https://github.com/eidelen/DicomToMesh/actions/workflows/ppaUbuntuLatest.yml/badge.svg)

# DicomToMesh

Expand Down Expand Up @@ -37,7 +37,7 @@ The option <code>-vo</code> shows the input DICOM data in a volume renderer (vtk

# Installation

Ubuntu 24.04, 22.04, 18.04
Ubuntu 25.04, 24.04, 22.04, 18.04
```
> sudo add-apt-repository ppa:eidelen/d2m
> sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dicom2mesh (0.820-0ppa0~noble) noble; urgency=low
dicom2mesh (0.823-0ppa0~oracular) oracular; urgency=low

* Try to fix linking error libjawt
* Fix more linking errors
Expand Down
9 changes: 7 additions & 2 deletions dicom2mesh/test/test-ppa-dicom2mesh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ echo "Running dicom2mesh..."
dicom2mesh -i "$INPUT_FILE" -o "$OUTPUT_FILE" # <-- You will adjust this command line as needed

# Step 4: Check output
if [ -f "$OUTPUT_FILE" ]; then
echo "✅ Output file '$OUTPUT_FILE' was successfully generated."
if [ -s "$OUTPUT_FILE" ]; then
echo "✅ Output file '$OUTPUT_FILE' exists and is not empty."
ls -lh "$OUTPUT_FILE"
exit 0
elif [ -f "$OUTPUT_FILE" ]; then
echo "❌ Output file '$OUTPUT_FILE' exists but is empty."
exit 1
else
echo "❌ Output file '$OUTPUT_FILE' was not found."
exit 1
fi