mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-04 05:15:10 +00:00
Compare commits
3 Commits
39dc443399
...
fd73bb7dcb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd73bb7dcb | ||
|
|
a02cecfd18 | ||
|
|
d6accc3f1c |
26
.github/workflows/ci-check.yml
vendored
26
.github/workflows/ci-check.yml
vendored
@@ -19,24 +19,34 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Setup Miniconda
|
- name: Setup Miniforge
|
||||||
uses: conda-incubator/setup-miniconda@v3
|
uses: conda-incubator/setup-miniconda@v3
|
||||||
with:
|
with:
|
||||||
miniconda-version: 'latest'
|
miniforge-version: latest
|
||||||
channels: conda-forge,robostack-staging,uni-lab,defaults
|
use-mamba: true
|
||||||
channel-priority: strict
|
channels: robostack-staging,conda-forge,uni-lab
|
||||||
|
channel-priority: flexible
|
||||||
activate-environment: check-env
|
activate-environment: check-env
|
||||||
auto-activate-base: false
|
auto-activate-base: false
|
||||||
auto-update-conda: false
|
auto-update-conda: false
|
||||||
show-channel-urls: true
|
show-channel-urls: true
|
||||||
|
|
||||||
- name: Install minimal ROS dependencies
|
- name: Install ROS dependencies and unilabos-msgs
|
||||||
run: |
|
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: |
|
run: |
|
||||||
conda install ros-humble-unilabos-msgs -c uni-lab -c robostack-staging -c conda-forge
|
|
||||||
pip install -e .
|
pip install -e .
|
||||||
|
|
||||||
- name: Run check mode (complete_registry)
|
- name: Run check mode (complete_registry)
|
||||||
|
|||||||
Reference in New Issue
Block a user