[Feature] kv_transfer/kv_connector: Add aibrix_pd_reuse_connector to support PD + reuse #3592
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Build Images | |
| on: | |
| workflow_dispatch: # Allows manual trigger | |
| pull_request: | |
| branches: [ "main", "release-*" ] | |
| jobs: | |
| build: | |
| # This prevents the job from running as other steps cover its functionality. | |
| # We use 'if: false' to keep the file for future reference without deleting it. | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Docker Build Container Images | |
| run: make docker-build-all |