From de66c6ecc30856c789e9cc8cc20f86f436759cef Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Mon, 9 Mar 2026 17:09:52 -0700 Subject: [PATCH] Fix CI script syntax --- .gitea/workflows/ci.yaml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 6b3a225..c9d2475 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -134,21 +134,18 @@ jobs: shell: bash run: | /usr/bin/kicad-git-filters.py - export KIBOT_3D_MODELS="${{ env.kibot_cache }}/3d_models" - echo Exporting KIBOT_3D_MODELS=$KIBOT_3D_MODELS - OPTIONS="-c kibot/yaml/kibot_pre_update_xml.yaml -d . --log kibot_run_xml.log" - echo "Options: $OPTIONS" - kibot $OPTIONS + kibot -c kibot/yaml/kibot_pre_update_xml.yaml -d . --log kibot_run_xml.log - name: Run KiBot (Preprocessing) shell: bash run: | /usr/bin/kicad-git-filters.py - export KIBOT_3D_MODELS="${{ env.kibot_cache }}/3d_models" - echo Exporting KIBOT_3D_MODELS=$KIBOT_3D_MODELS - OPTIONS="-c ${{ env.kibot_config }} -d . --log kibot_run_preprocess.log --skip-pre all ${{ env.version_arg }} preprocess_group" - echo "Options: $OPTIONS" - kibot $OPTIONS + kibot -c ${{ env.kibot_config }} \ + -d . \ + --log kibot_run_preprocess.log \ + --skip-pre all \ + ${{ env.version_arg }} \ + preprocess_group - name: Run KiBot (Outputs) shell: bash @@ -156,9 +153,7 @@ jobs: /usr/bin/kicad-git-filters.py export KIBOT_3D_MODELS="${{ env.kibot_cache }}/3d_models" echo Exporting KIBOT_3D_MODELS=$KIBOT_3D_MODELS - OPTIONS="-c ${{ env.kibot_config }} ${{ env.additional_args }}" - echo "Options: $OPTIONS" - kibot $OPTIONS + kibot -c ${{ env.kibot_config }} -d . ${{ env.additional_args }} - name: Save Cached 3d Models id: cache-models-save