From d245ceef1b40119d9661dd848bd0033aef170bf1 Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:15:16 +0800 Subject: [PATCH] Fix Build 3 --- .github/workflows/ci-check.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci-check.yml b/.github/workflows/ci-check.yml index 2151a66..02f0238 100644 --- a/.github/workflows/ci-check.yml +++ b/.github/workflows/ci-check.yml @@ -8,7 +8,7 @@ on: jobs: registry-check: - runs-on: ubuntu-latest + runs-on: windows-latest defaults: run: @@ -33,8 +33,6 @@ jobs: - name: Install ROS dependencies, uv and unilabos-msgs run: | - # Install all packages together for proper dependency resolution - # Use mamba for faster and more reliable solving mamba install -n check-env \ python=3.11.14 \ conda-forge::uv \ @@ -57,20 +55,13 @@ jobs: - name: Install pip dependencies and unilabos run: | - # Activate the environment - conda activate check-env - # Install pip dependencies from requirements.txt (uv already installed via conda) uv pip install -r unilabos/utils/requirements.txt - # Install special packages (git-based) uv pip install pywinauto git+https://github.com/Xuwznln/pylabrobot.git - # Remove conflicting package uv pip uninstall enum34 || true - # Install unilabos in editable mode uv pip install -e . - name: Run check mode (complete_registry) run: | - conda activate check-env python -m unilabos --check_mode --skip_env_check - name: Check for uncommitted changes