Compare commits

...

3 Commits

Author SHA1 Message Date
Xuwznln
fd73bb7dcb CI Check Fix 5 2026-01-26 08:47:27 +08:00
Xuwznln
a02cecfd18 CI Check Fix 4 2026-01-26 08:20:17 +08:00
Xuwznln
d6accc3f1c CI Check Fix 3 2026-01-26 08:14:21 +08:00

View File

@@ -19,24 +19,34 @@ jobs:
with:
fetch-depth: 0
- name: Setup Miniconda
- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: 'latest'
channels: conda-forge,robostack-staging,uni-lab,defaults
channel-priority: strict
miniforge-version: latest
use-mamba: true
channels: robostack-staging,conda-forge,uni-lab
channel-priority: flexible
activate-environment: check-env
auto-activate-base: false
auto-update-conda: false
show-channel-urls: true
- name: Install minimal ROS dependencies
- name: Install ROS dependencies and unilabos-msgs
run: |
conda install robostack-staging::ros-humble-ros-core robostack-staging::ros-humble-action-msgs robostack-staging::ros-humble-std-msgs robostack-staging::ros-humble-geometry-msgs robostack-staging::ros-humble-control-msgs -c robostack-staging -c conda-forge
# Install all packages together for proper dependency resolution
# Use mamba for faster and more reliable solving
mamba install -n check-env \
python=3.11.11 \
robostack-staging::ros-humble-ros-core \
robostack-staging::ros-humble-action-msgs \
robostack-staging::ros-humble-std-msgs \
robostack-staging::ros-humble-geometry-msgs \
robostack-staging::ros-humble-control-msgs \
uni-lab::ros-humble-unilabos-msgs \
-c robostack-staging -c conda-forge -c uni-lab -y
- name: Install unilabos-msgs and project
- name: Install unilabos project
run: |
conda install ros-humble-unilabos-msgs -c uni-lab -c robostack-staging -c conda-forge
pip install -e .
- name: Run check mode (complete_registry)