Skip to content

Commit 2ef774f

Browse files
committed
install uncached pip deps
1 parent 6a248ca commit 2ef774f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,14 @@ jobs:
141141
- name: Install env
142142
run: conda env update --name=${{steps.setup.outputs.env-name}} --file=${{steps.setup.outputs.env-file}} python=${{matrix.python-version}}
143143
if: steps.cache-env.outputs.cache-hit != 'true'
144+
- name: Install uncached pip dependencies
145+
run: |
146+
pip install --upgrade pip
147+
pip install --no-deps -e .
148+
- name: Install uncached pip dependencies for 'full' environment
149+
if: matrix.conda-env == 'full'
150+
run: |
151+
pip install git+https://github.com/ChaoningZhang/MobileSAM.git
144152
- name: Cache env
145153
if: steps.cache-env.outputs.cache-hit != 'true'
146154
uses: actions/cache/save@v4

0 commit comments

Comments
 (0)