From 57b30f627b786a28cf1751beeb981aa80026ef72 Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Mon, 13 Oct 2025 02:24:03 +0800 Subject: [PATCH] Try fixx one-key build on linux --- .github/workflows/conda-pack-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conda-pack-build.yml b/.github/workflows/conda-pack-build.yml index 19c95bf4..23e25ec7 100644 --- a/.github/workflows/conda-pack-build.yml +++ b/.github/workflows/conda-pack-build.yml @@ -42,7 +42,7 @@ jobs: defaults: run: # Windows uses cmd for better conda/mamba compatibility, Unix uses bash - shell: ${{ matrix.platform == 'win-64' && 'cmd /C CALL {0}' || 'bash -el {0}' }} + shell: ${{ matrix.platform == 'win-64' && 'cmd' || 'bash' }} steps: - name: Check if platform should be built @@ -187,7 +187,7 @@ jobs: echo Checking critical packages... conda run -n unilab python -c "import rclpy; print('ROS2 rclpy: OK')" echo Running comprehensive verification script... - conda run -n unilab python scripts\verify_installation.py || echo Warning: Verification script reported issues + conda run -n unilab python scripts\verify_installation.py --auto-install || echo Warning: Verification script reported issues echo Environment verification complete! - name: Verify environment integrity (Unix) @@ -201,7 +201,7 @@ jobs: echo "Checking critical packages..." conda run -n unilab python -c "import rclpy; print('ROS2 rclpy: OK')" echo "Running comprehensive verification script..." - conda run -n unilab python scripts/verify_installation.py || echo "Warning: Verification script reported issues" + conda run -n unilab python scripts/verify_installation.py --auto-install || echo "Warning: Verification script reported issues" echo "Environment verification complete!" - name: Pack conda environment (Windows)