go/vt/mysqlctl: run backup init sql after catchup, disable super read… #65
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: Build and Push Antithesis Images | |
| permissions: read-all | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| REGISTRY: us-central1-docker.pkg.dev | |
| REPOSITORY: molten-verve-216720/vitess-repository | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Log into Antithesis registry | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: _json_key | |
| password: ${{ secrets.ANTITHESIS_GAR_KEY }} | |
| - name: Build and push config image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./test/antithesis/compose | |
| file: ./test/antithesis/compose/Dockerfile.config | |
| platforms: linux/amd64 | |
| push: true | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-config:latest | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-config:${{ github.sha }} | |
| - name: Build and push client image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./test/antithesis/compose/antithesis-client | |
| file: ./test/antithesis/compose/antithesis-client/Dockerfile | |
| platforms: linux/amd64 | |
| push: true | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-client:latest | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-client:${{ github.sha }} | |
| - name: Build and push mysql image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./test/antithesis/compose/source_db/mysql | |
| file: ./test/antithesis/compose/source_db/mysql/Dockerfile | |
| platforms: linux/amd64 | |
| push: true | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-mysql:latest | |
| ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/vitess-antithesis-mysql:${{ github.sha }} |