Full Node Streaming Recurring snapshots (#2079) #1
This file contains 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: Protocol Build & Push Image to AWS ECR | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
- 'release/protocol/v[0-9]+.[0-9]+.x' # e.g. release/protocol/v0.1.x | |
- 'release/protocol/v[0-9]+.x' # e.g. release/protocol/v1.x | |
jobs: | |
build-and-push-snapshot-dev: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_DEV }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_DEV }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: dev-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags | |
build-and-push-snapshot-dev2: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_DEV2 }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_DEV2 }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: dev2-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags | |
build-and-push-snapshot-dev3: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_DEV3 }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_DEV3 }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: dev3-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags | |
build-and-push-snapshot-dev4: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_DEV4 }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_DEV4 }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: dev4-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags | |
build-and-push-snapshot-dev5: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_DEV5 }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_DEV5 }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: dev5-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags | |
build-and-push-snapshot-staging: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./protocol | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' # without this, ignite fails. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_VALIDATOR_STAGING }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_VALIDATOR_STAGING }} | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, Tag, and Push the Image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: staging-validator-snapshot | |
run: | | |
make localnet-build-amd64 | |
commit_hash=$(git rev-parse --short=7 HEAD) | |
docker build \ | |
--platform amd64 \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$commit_hash \ | |
-f testing/snapshotting/Dockerfile.snapshot . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY --all-tags |