mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
611c9273a3
* Add `pull_request.branches.main` as a trigger of the `publish` workflow * [WIP] Comment out the publish steps * Package and upload the NPM package for debug * Skip the copy_frontend.py hook in the Lite build * add changeset * [WIP] Show gradio files * [WIP] Show gradio files * Comment out installing the gradio and gradio_client libraries * Restore installing gradio_client because it's used by `python js/_website/generate_jsons/generate.py` that follows * Restore installing gradio because it's used by `python js/_website/generate_jsons/generate.py` that follows * Add code * Revert "[WIP] Show gradio files" This reverts commit e15fef29bd14671576e64d94d3b844786ebe7e83. * Build the gradio wheel with the custom lite target * add changeset * Revert "[WIP] Show gradio files" This reverts commit aef053f9caad203c7e1bbfa15e9f9e536f77442a. * Revert "Skip the copy_frontend.py hook in the Lite build" This reverts commit ca296d0e4e169adbb6af3705561869aa8c9037b7. * Update .github/actions/install-frontend-deps/action.yml for hatch installation * [WIP] Fix test-functional.yml and .github/actions/install-all-deps/action.yml to call the setup actions in this branch * Revert "[WIP] Fix test-functional.yml and .github/actions/install-all-deps/action.yml to call the setup actions in this branch" This reverts commit 571823b4a05f7e41e0b3731d51c5bd86b2e17ddc. * Comment-in lines in publish.yml * Move Lite build from publish.yml to deploy-spaces.yml * Use the build_lite option of install-all-deps instead of running the build command * [TMP] Change the branch of action files * Fix the hatch Lite build setting * Return pnpm pack to deploy-space * Revert "[TMP] Change the branch of action files" This reverts commit fe4e1c8f210eb21ac7ee1bd4b219d35e1ae84c85. * Remove dependencies for lite build * [TMP] Change the branch of action files * Revert "Remove dependencies for lite build" This reverts commit 856a858c1f49d736bfeb056ba0ec7e9bc35af29c. * Install packaging>=23.2 * [TMP] Show packaging version * Fix pip install * Fix * Uninstall packaging once * Use `pip install -U` instead of uninstalling the exiting version * Revert "[TMP] Show packaging version" This reverts commit 910b6bbde3dc8777c051bd5576813913d57959f7. * Add `-U` flag * Set packaging version as >=23.2 * Revert the changes on pip install * Set packaging version as >=23.2 in requirements.txt * Revert "Set packaging version as >=23.2" This reverts commit 8aa77c8930815e69d7256886cad88b6da8361069. * Fix hook name * Revert "Set packaging version as >=23.2 in requirements.txt" This reverts commit fbd605cbfb5d06706eacc0648a2e9d7816c9de1f. * Revert "Revert the changes on pip install" This reverts commit 81ff38a660635fce9cb17862a2072e4d169c3466. * Add comments * Revert "[TMP] Change the branch of action files" This reverts commit 0d6aa48d75a842db9b3987212deffedb0c0ca51d. * Revert the trigger of .github/workflows/deploy-spaces.yml * Remove unused `node_auth_token` and `npm_token` inputs from the `install-all-deps` action * [TMP] Trigger CI based on this PR * Remove packging installation * Revert "Remove packging installation" This reverts commit4a4f18de3a
. * Revert "[TMP] Trigger CI based on this PR" This reverts commit6cea830c8e
. --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: freddyaboulton <alfonsoboulton@gmail.com>
76 lines
3.0 KiB
YAML
76 lines
3.0 KiB
YAML
name: publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
CI: true
|
|
PNPM_CACHE_FOLDER: .pnpm-store
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
jobs:
|
|
version_or_publish:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- name: install dependencies
|
|
uses: "gradio-app/gradio/.github/actions/install-all-deps@main"
|
|
with:
|
|
always_install_pnpm: true
|
|
skip_build: 'false'
|
|
- name: Build packages
|
|
run: |
|
|
. venv/bin/activate
|
|
pip install -U build hatch packaging>=23.2 # packaging>=23.2 is needed to build Lite due to https://github.com/pypa/hatch/issues/1381
|
|
pnpm --filter @gradio/client --filter @gradio/lite --filter @gradio/preview build
|
|
- name: create and publish versions
|
|
id: changesets
|
|
uses: changesets/action@v1
|
|
with:
|
|
version: pnpm ci:version
|
|
commit: "chore: update versions"
|
|
title: "chore: update versions"
|
|
publish: pnpm ci:publish
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.GRADIO_PAT }}
|
|
- name: add label to skip chromatic build
|
|
if: ${{ steps.changesets.outputs.pullRequestNumber != '' && steps.changesets.outputs.pullRequestNumber != 'undefined' }}
|
|
run: gh pr edit "$PR_NUMBER" --add-label "no-visual-update"
|
|
env:
|
|
PR_NUMBER: ${{ steps.changesets.outputs.pullRequestNumber }}
|
|
GITHUB_TOKEN: ${{ secrets.GRADIO_PAT }}
|
|
- name: add label to run flaky tests
|
|
if: ${{ steps.changesets.outputs.pullRequestNumber != '' && steps.changesets.outputs.pullRequestNumber != 'undefined' }}
|
|
run: gh pr edit "$PR_NUMBER" --add-label "flaky-tests"
|
|
env:
|
|
PR_NUMBER: ${{ steps.changesets.outputs.pullRequestNumber }}
|
|
GITHUB_TOKEN: ${{ secrets.GRADIO_PAT }}
|
|
- name: add label to run backend tests on Windows
|
|
if: ${{ steps.changesets.outputs.pullRequestNumber != '' && steps.changesets.outputs.pullRequestNumber != 'undefined' }}
|
|
run: gh pr edit "$PR_NUMBER" --add-label "windows-tests"
|
|
env:
|
|
PR_NUMBER: ${{ steps.changesets.outputs.pullRequestNumber }}
|
|
GITHUB_TOKEN: ${{ secrets.GRADIO_PAT }}
|
|
- name: publish to pypi
|
|
if: steps.changesets.outputs.hasChangesets != 'true'
|
|
uses: "gradio-app/github/actions/publish-pypi@main"
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWSACCESSKEYID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWSSECRETKEY }}
|
|
AWS_DEFAULT_REGION: us-west-2
|
|
with:
|
|
user: __token__
|
|
passwords: |
|
|
gradio:${{ secrets.PYPI_API_TOKEN }}
|
|
gradio_client:${{ secrets.PYPI_GRADIO_CLIENT_TOKEN }}
|
|
- name: trigger spaces deploy workflow
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.COMMENT_TOKEN }}
|
|
run: gh workflow run deploy-spaces.yml
|