Bump golang.org/x/crypto from 0.24.0 to 0.27.0 #48
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: Kurtosis CI | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
kurtosis-cdk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout zkevm-sequence-sender | |
uses: actions/checkout@v4 | |
with: | |
path: zkevm-sequence-sender | |
- name: Checkout kurtosis-cdk | |
uses: actions/checkout@v4 | |
with: | |
repository: 0xPolygon/kurtosis-cdk | |
ref: main | |
path: kurtosis-cdk | |
- name: Install Kurtosis CDK tools | |
uses: ./kurtosis-cdk/.github/actions/setup-kurtosis-cdk | |
- name: Build docker image | |
working-directory: ./zkevm-sequence-sender | |
run: docker build -t zkevm-sequence-sender:local --file Dockerfile . | |
- name: Configure Kurtosis CDK | |
working-directory: ./kurtosis-cdk | |
run: | | |
yq -Y --in-place '.args.data_availability_mode = "cdk-validium"' cdk-erigon-sequencer-params.yml | |
yq -Y --in-place '.args.zkevm_sequence_sender_image = "zkevm-sequence-sender:local"' cdk-erigon-sequencer-params.yml | |
- name: Deploy Kurtosis CDK package | |
working-directory: ./kurtosis-cdk | |
run: kurtosis run --enclave cdk-v1 --args-file cdk-erigon-sequencer-params.yml --image-download always . | |
- name: Monitor verified batches | |
working-directory: ./kurtosis-cdk | |
shell: bash | |
run: .github/actions/monitor-cdk-verified-batches/batch_verification_monitor.sh 19 600 |