Install client in PR Build (#5178)

* Modify ci

* Add quotes

* Modify comment

* Fix comment

* reverse order
This commit is contained in:
Freddy Boulton 2023-08-11 09:32:01 -04:00 committed by GitHub
parent ade93a893e
commit 3c00f0fbfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View File

@ -44,7 +44,9 @@ jobs:
name: gradio-${{ env.GRADIO_VERSION }}-py3-none-any.whl
path: dist/gradio-${{ env.GRADIO_VERSION }}-py3-none-any.whl
- name: Set up Demos
run: python scripts/copy_demos.py https://gradio-builds.s3.amazonaws.com/${{ github.sha }}/gradio-${{ env.GRADIO_VERSION }}-py3-none-any.whl
run: |
python scripts/copy_demos.py https://gradio-builds.s3.amazonaws.com/${{ github.sha }}/gradio-${{ env.GRADIO_VERSION }}-py3-none-any.whl \
"gradio-client @ git+https://github.com/gradio-app/gradio@${{ github.sha }}#subdirectory=client/python"
- name: Upload all_demos
uses: actions/upload-artifact@v3
with:

View File

@ -58,11 +58,16 @@ jobs:
All the demos for this PR have been deployed at ${{ env.SPACE_URL }}
---
You can install the changes in this PR by running:
### Install Gradio from this PR:
```bash
pip install https://gradio-builds.s3.amazonaws.com/${{ env.gh_sha }}/gradio-${{ env.gradio_version }}-py3-none-any.whl
```
---
### Install Gradio Python Client from this PR
```bash
pip install "gradio-client @ git+https://github.com/gradio-app/gradio@${{ github.sha }}#subdirectory=client/python"
```
comment_tag: All the demos for this PR have been deployed at
GITHUB_TOKEN: ${{ secrets.COMMENT_TOKEN }}
pr_number: ${{ env.pr_number }}

View File

@ -55,6 +55,7 @@ if __name__ == "__main__":
description="Copy all demos to all_demos and update requirements"
)
parser.add_argument("gradio_version", type=str, help="Gradio")
parser.add_argument("gradio_client_version", type=str, help="Gradio Client Version")
args = parser.parse_args()
source_dir = pathlib.Path(pathlib.Path(__file__).parent, "..", "demo")
@ -66,6 +67,7 @@ if __name__ == "__main__":
pathlib.Path(__file__).parent, "..", "demo", "all_demos", "requirements.txt"
)
requirements = f"""
{args.gradio_client_version}
{args.gradio_version}
pypistats==1.1.0
plotly==5.10.0