mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-05 05:45:10 +00:00
Compare commits
3 Commits
fd73bb7dcb
...
feat/unila
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7a1d5cdd3 | ||
|
|
263d3bbd22 | ||
|
|
98e706ad8f |
28
.github/workflows/ci-check.yml
vendored
28
.github/workflows/ci-check.yml
vendored
@@ -1,8 +1,6 @@
|
||||
name: CI Check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, dev]
|
||||
pull_request:
|
||||
branches: [main, dev]
|
||||
|
||||
@@ -19,34 +17,24 @@ jobs:
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Miniforge
|
||||
- name: Setup Miniconda
|
||||
uses: conda-incubator/setup-miniconda@v3
|
||||
with:
|
||||
miniforge-version: latest
|
||||
use-mamba: true
|
||||
channels: robostack-staging,conda-forge,uni-lab
|
||||
channel-priority: flexible
|
||||
miniconda-version: 'latest'
|
||||
channels: conda-forge,robostack-staging,uni-lab,defaults
|
||||
channel-priority: strict
|
||||
activate-environment: check-env
|
||||
auto-activate-base: false
|
||||
auto-update-conda: false
|
||||
show-channel-urls: true
|
||||
|
||||
- name: Install ROS dependencies and unilabos-msgs
|
||||
- name: Install minimal ROS dependencies
|
||||
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.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
|
||||
conda install ros-humble-ros-core ros-humble-std-msgs ros-humble-geometry-msgs ros-humble-control-msgs -c robostack-staging -c conda-forge
|
||||
|
||||
- name: Install unilabos project
|
||||
- name: Install unilabos-msgs and 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)
|
||||
|
||||
Reference in New Issue
Block a user