feat: add standalone ccip-server Docker image and workflow #45
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: Build and Push CCIP Server Image to GCR | |
| on: | |
| push: | |
| branches: [main] | |
| tags: | |
| - '**' | |
| paths: | |
| - 'typescript/ccip-server/**' | |
| - 'typescript/deploy-sdk/**' | |
| - 'typescript/sdk/**' | |
| - 'typescript/provider-sdk/**' | |
| - 'typescript/utils/**' | |
| - '.github/workflows/ccip-server-docker.yml' | |
| pull_request: | |
| paths: | |
| - 'typescript/ccip-server/**' | |
| - 'typescript/deploy-sdk/**' | |
| - 'typescript/sdk/**' | |
| - 'typescript/provider-sdk/**' | |
| - 'typescript/utils/**' | |
| - '.github/workflows/ccip-server-docker.yml' | |
| workflow_dispatch: | |
| inputs: | |
| include_arm64: | |
| description: 'Include arm64 in the build' | |
| required: false | |
| default: 'false' | |
| concurrency: | |
| group: build-push-ccip-server-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-env: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| gcloud-service-key: ${{ steps.gcloud-service-key.outputs.defined }} | |
| steps: | |
| - id: gcloud-service-key | |
| env: | |
| GCLOUD_SERVICE_KEY: ${{ secrets.GCLOUD_SERVICE_KEY }} | |
| if: "${{ env.GCLOUD_SERVICE_KEY != '' }}" | |
| run: echo "defined=true" >> $GITHUB_OUTPUT | |
| build-and-push-to-gcr: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pull-requests: write | |
| needs: [check-env] | |
| if: needs.check-env.outputs.gcloud-service-key == 'true' | |
| steps: | |
| - name: Generate GitHub App Token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.HYPER_GONK_APP_ID }} | |
| private-key: ${{ secrets.HYPER_GONK_PRIVATE_KEY }} | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Generate tag data | |
| id: taggen | |
| run: | | |
| echo "TAG_DATE=$(date +'%Y%m%d-%H%M%S')" >> $GITHUB_OUTPUT | |
| echo "TAG_SHA=$(echo '${{ github.event.pull_request.head.sha || github.sha }}' | cut -b 1-7)" >> $GITHUB_OUTPUT | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| gcr.io/abacus-labs-dev/hyperlane-offchain-lookup-server | |
| tags: | | |
| type=ref,event=branch | |
| type=ref,event=pr | |
| type=raw,value=${{ steps.taggen.outputs.TAG_SHA }}-${{ steps.taggen.outputs.TAG_DATE }} | |
| - name: Set up Depot CLI | |
| uses: depot/setup-action@v1 | |
| - name: Login to GCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: gcr.io | |
| username: _json_key | |
| password: ${{ secrets.GCLOUD_SERVICE_KEY }} | |
| - name: Determine platforms | |
| id: determine-platforms | |
| run: | | |
| if [ "${{ github.event.inputs.include_arm64 }}" == "true" ]; then | |
| echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT | |
| else | |
| echo "platforms=linux/amd64" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Build and push | |
| id: build | |
| uses: depot/build-push-action@v1 | |
| with: | |
| project: 3cpjhx94qv | |
| context: ./ | |
| file: ./typescript/ccip-server/Dockerfile | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| platforms: ${{ steps.determine-platforms.outputs.platforms }} | |
| - name: Check for ccip-server changes | |
| id: check-changes | |
| if: github.event_name == 'pull_request' | |
| run: | | |
| # Only comment if there are explicit changes to ccip-server package or this workflow | |
| if git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -qE '^typescript/ccip-server/|^\.github/workflows/ccip-server-docker\.yml$'; then | |
| echo "has_changes=true" >> $GITHUB_OUTPUT | |
| else | |
| echo "has_changes=false" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Comment image tags on PR | |
| if: github.event_name == 'pull_request' && steps.check-changes.outputs.has_changes == 'true' | |
| uses: ./.github/actions/docker-image-comment | |
| with: | |
| comment_tag: ccip-server-docker-image | |
| image_name: CCIP Server Docker Image | |
| emoji: 🔍 | |
| image_tags: ${{ steps.meta.outputs.tags }} | |
| pr_number: ${{ github.event.pull_request.number }} | |
| github_token: ${{ steps.generate-token.outputs.token }} | |
| job_status: ${{ job.status }} |