Skip to content

Commit dd8e465

Browse files
authored
Merge pull request #59 from eidelen/ppa2504
Ppa2504
2 parents 6897e3f + 79f9721 commit dd8e465

File tree

4 files changed

+10
-20
lines changed

4 files changed

+10
-20
lines changed

.github/workflows/ppa2204UbuntuLatest.yml

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![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)
1+
![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)
22

33
# DicomToMesh
44

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

3838
# Installation
3939

40-
Ubuntu 24.04, 22.04, 18.04
40+
Ubuntu 25.04, 24.04, 22.04, 18.04
4141
```
4242
> sudo add-apt-repository ppa:eidelen/d2m
4343
> sudo apt-get update

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dicom2mesh (0.820-0ppa0~noble) noble; urgency=low
1+
dicom2mesh (0.823-0ppa0~oracular) oracular; urgency=low
22

33
* Try to fix linking error libjawt
44
* Fix more linking errors

dicom2mesh/test/test-ppa-dicom2mesh.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ echo "Running dicom2mesh..."
2525
dicom2mesh -i "$INPUT_FILE" -o "$OUTPUT_FILE" # <-- You will adjust this command line as needed
2626

2727
# Step 4: Check output
28-
if [ -f "$OUTPUT_FILE" ]; then
29-
echo "✅ Output file '$OUTPUT_FILE' was successfully generated."
28+
if [ -s "$OUTPUT_FILE" ]; then
29+
echo "✅ Output file '$OUTPUT_FILE' exists and is not empty."
30+
ls -lh "$OUTPUT_FILE"
3031
exit 0
32+
elif [ -f "$OUTPUT_FILE" ]; then
33+
echo "❌ Output file '$OUTPUT_FILE' exists but is empty."
34+
exit 1
3135
else
3236
echo "❌ Output file '$OUTPUT_FILE' was not found."
3337
exit 1
3438
fi
3539

40+

0 commit comments

Comments
 (0)