mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Install client in PR Build (#5178)
* Modify ci * Add quotes * Modify comment * Fix comment * reverse order
This commit is contained in:
parent
ade93a893e
commit
3c00f0fbfb
4
.github/workflows/build-pr.yml
vendored
4
.github/workflows/build-pr.yml
vendored
@ -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:
|
||||
|
7
.github/workflows/deploy-pr-to-spaces.yml
vendored
7
.github/workflows/deploy-pr-to-spaces.yml
vendored
@ -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 }}
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user