diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a1419a6..3bf1f10 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -121,10 +121,6 @@ jobs: path: cache/3d_models key: 3d_models - - name: List Cached 3d Models - shell: bash - run: '[ -d cache/3d_models ] && ls -l cache/3d_models/* || echo "No Cached 3d Models"' - - name: Check KiBot Version Information shell: bash run: | @@ -150,7 +146,7 @@ jobs: export KIBOT_3D_MODELS="${{ env.kibot_cache }}/3d_models" echo Exporting KIBOT_3D_MODELS=$KIBOT_3D_MODELS echo "Options: -c ${{ env.kibot_config }} -d . --skip-pre all ${{ env.version_arg }} preprocess_group" - kibot -c ${{ env.kibot_config }} -d . --skip-pre all ${{ env.version_arg }} preprocess_group + kibot -vvvv --log kibot_run_preprocess.log -c ${{ env.kibot_config }} -d . --skip-pre all ${{ env.version_arg }} preprocess_group - name: Run KiBot (Outputs) shell: bash @@ -159,7 +155,7 @@ jobs: export KIBOT_3D_MODELS="${{ env.kibot_cache }}/3d_models" echo Exporting KIBOT_3D_MODELS=$KIBOT_3D_MODELS echo "Options: -c ${{ env.kibot_config }} ${{ env.additional_args }}" - kibot -c ${{ env.kibot_config }} ${{ env.additional_args }} + kibot -vvvv -c ${{ env.kibot_config }} ${{ env.additional_args }} - name: Save Cached 3d Models id: cache-models-save @@ -215,12 +211,12 @@ jobs: name: log_file_kibot path: ${{ env.kibot_log }} - - name: Upload Drawing Notes Log + - name: Upload Preprocessing Log if: ${{ always() && env.kibot_stage != 'DRAFT' }} uses: christopherhx/gitea-upload-artifact@v4 with: - name: log_file_notes - path: kibot_run_notes.log + name: log_file_preprocess + path: kibot_run_preprocess.log - name: Upload README Log if: ${{ always() && env.kibot_stage == 'DRAFT' }}