|
@@ -22,15 +22,15 @@ jobs:
|
|
|
with:
|
|
|
path: ~/.cache/pip
|
|
|
key: Key-v1-py3.9-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
|
|
|
+ - name: Install dependencies
|
|
|
+ run: |
|
|
|
+ python -m pip install --upgrade pip
|
|
|
+ pip install -r requirements.txt
|
|
|
- name: Extract branch name
|
|
|
run: |
|
|
|
echo $(env)
|
|
|
python -c "import git; print(git.Repo('.').head.ref.name)"
|
|
|
exit 255
|
|
|
- - name: Install dependencies
|
|
|
- run: |
|
|
|
- python -m pip install --upgrade pip
|
|
|
- pip install -r requirements.txt
|
|
|
- name: Convert small model
|
|
|
run: |
|
|
|
python -m cli.convert_model --model bigscience/bloom-350m --output_path ./converted_model \
|