Skip to content

Commit

Permalink
[CI] Install optional repos.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmurooka committed Dec 1, 2024
1 parent cfae547 commit 4a73c82
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,25 @@ jobs:
- name: Install package
run: |
pip install -e .${{ matrix.optional-key }}
- name: Install ${{ matrix.optional-key }}
if: matrix.optional-key == '[sarnn]'
run: |
cd third_party/eipl
pip install -e .
- name: Install ${{ matrix.optional-key }}
if: matrix.optional-key == '[act]'
run: |
cd third_party/act/detr
pip install -e .
- name: Install ${{ matrix.optional-key }}
if: matrix.optional-key == '[diffusion-policy]'
run: |
cd third_party/r3m
pip install -e .
cd ../diffusion_policy
pip install -e .
- name: Install ${{ matrix.optional-key }}
if: matrix.optional-key == '[real-ur5e]'
run: |
cd third_party/gello_software
pip install -e .

0 comments on commit 4a73c82

Please sign in to comment.