From 4515e440026ce0f7fdf81d4d0733d2507f0e2d7d Mon Sep 17 00:00:00 2001 From: SWHL Date: Fri, 1 Nov 2024 08:18:50 +0800 Subject: [PATCH] chore(rapid_table): remove rapid_table files --- .../workflows/gen_whl_to_pypi_rapid_table.yml | 71 ------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/gen_whl_to_pypi_rapid_table.yml diff --git a/.github/workflows/gen_whl_to_pypi_rapid_table.yml b/.github/workflows/gen_whl_to_pypi_rapid_table.yml deleted file mode 100644 index ca22104..0000000 --- a/.github/workflows/gen_whl_to_pypi_rapid_table.yml +++ /dev/null @@ -1,71 +0,0 @@ -name: Push rapidocr_table to pypi - -on: - push: - branches: [ main ] - paths: - - 'rapid_table/**' - - 'docs/doc_whl_rapid_table.md' - - 'setup_table.py' - - '.github/workflows/gen_whl_to_pypi_rapid_table.yml' - - 'tests/test_table.py' - -env: - RESOURCES_URL: https://github.com/RapidAI/RapidStructure/releases/download/v0.0.0/rapid_table_models.zip - -jobs: - UnitTesting: - runs-on: ubuntu-latest - steps: - - name: Pull latest code - uses: actions/checkout@v3 - - - name: Set up Python 3.7 - uses: actions/setup-python@v4 - with: - python-version: '3.7' - architecture: 'x64' - - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - - name: Unit testings - run: | - wget $RESOURCES_URL - ZIP_NAME=${RESOURCES_URL##*/} - DIR_NAME=${ZIP_NAME%.*} - unzip $DIR_NAME - cp $DIR_NAME/*.onnx rapid_table/models/ - - pip install -r requirements.txt - pip install rapidocr_onnxruntime - pytest tests/test_table.py - - GenerateWHL_PushPyPi: - needs: UnitTesting - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set up Python 3.7 - uses: actions/setup-python@v4 - with: - python-version: '3.7' - architecture: 'x64' - - - name: Run setup - run: | - pip install -r requirements.txt - wget $RESOURCES_URL - ZIP_NAME=${RESOURCES_URL##*/} - DIR_NAME=${ZIP_NAME%.*} - unzip $ZIP_NAME - mv $DIR_NAME/en_ppstructure_mobile_v2_SLANet.onnx rapid_table/models/ - python setup_table.py bdist_wheel ${{ github.event.head_commit.message }} - - - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@v1.5.0 - with: - password: ${{ secrets.RAPID_STRUCTURE }} - packages_dir: dist/