From 325745a822c8674383b421a0bed8c4b39afef63a Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sat, 25 Oct 2025 15:54:15 +0200 Subject: [PATCH] Test IfcConvert only on single file --- .github/workflows/ci.yml | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75c2a93e77..0185aa8077 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,20 +121,23 @@ jobs: sudo make -j $(nproc) sudo make install - - name: Run IfcConvert on Sample files - run: | - (find test/input src/bonsai/test/files -name '*.ifc' | while read i; do \ - echo $i | tee -a log; \ - timeout 1m "$(which IfcConvert)" -yv "$i" "$i.obj" --validate >> log 2>&1; \ - echo $i $? >> statuses; \ - done) || true - echo Failed - grep -v 0$ statuses - grep -v 0$ statuses | wc -l - echo Succeeded - grep 0$ statuses - grep 0$ statuses | wc -l + # - name: Run IfcConvert on Sample files + # run: | + # (find test/input src/bonsai/test/files -name '*.ifc' | while read i; do \ + # echo $i | tee -a log; \ + # timeout 1m "$(which IfcConvert)" -yv "$i" "$i.obj" --validate >> log 2>&1; \ + # echo $i $? >> statuses; \ + # done) || true + # echo Failed + # grep -v 0$ statuses + # grep -v 0$ statuses | wc -l + # echo Succeeded + # grep 0$ statuses + # grep 0$ statuses | wc -l + - name: Run IfcConvert on Sample file + run: | + IfcConvert test/input/acad2010_walls.ifc test/input/acad2010_walls.obj - name: Test ifcopenshell-python run: |