Skip to content

Commit

Permalink
addd pip install albumentations command in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
liqikai9 committed Aug 1, 2022
1 parent c5927df commit b99333f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cpu/${{matrix.torch_version}}/index.html
python -c 'import mmcv; print(mmcv.__version__)'
- name: Install other dependencies
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
- name: Build and install
run: rm -rf .eggs && pip install -e .
- name: Run unittests and generate coverage report
Expand Down Expand Up @@ -122,6 +124,7 @@ jobs:
python -V
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/${{matrix.torch_version}}/index.html
python -m pip install -r requirements.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
python -c 'import mmcv; print(mmcv.__version__)'
- name: Build and install
run: |
Expand Down Expand Up @@ -185,6 +188,7 @@ jobs:
python -V
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu102/${{matrix.torch_version}}/index.html
python -m pip install -r requirements.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
python -c 'import mmcv; print(mmcv.__version__)'
- name: Build and install
run: |
Expand Down

0 comments on commit b99333f

Please sign in to comment.