Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
test ci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rebelArtists committed Apr 10, 2024
1 parent d59af7f commit bfe2a00
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Regression Tests
name: Regression Tests - Manual Trigger
'on':
workflow_dispatch:
inputs:
Expand All @@ -9,18 +9,6 @@ name: Regression Tests
description: bake time (minutes)
required: false
default: 20
push:
branches:
- main
inputs:
zkevm_agglayer_commit_id:
description: 0xPolygon/agglayer commit id
required: false
default: '${{ github.event.before }}' # Set default value to commit ID being merged to main
bake_time:
description: bake time (minutes)
required: false
default: 20
jobs:
deploy_devnet:
runs-on: ubuntu-latest
Expand All @@ -36,6 +24,7 @@ jobs:
git clone https://github.com/0xPolygon/agglayer.git
cd agglayer
git checkout "${{ github.event.inputs.zkevm_agglayer_commit_id }}"
echo "Containerizing and testing commit: ${{ github.event.inputs.zkevm_agglayer_commit_id }}"
docker compose -f docker/docker-compose.yaml build --no-cache agglayer
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
Expand Down
79 changes: 79 additions & 0 deletions .github/workflows/regression-test-merge-to-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Regression Tests - Auto Merge to Main
'on':
push:
branches:
- main
inputs:
bake_time:
description: bake time (minutes)
required: false
default: 20
jobs:
deploy_devnet:
runs-on: ubuntu-latest
steps:
- name: Set up Docker
uses: docker/setup-buildx-action@v1
- name: Clone and build agglayer image locally
run: |
git clone https://github.com/0xPolygon/agglayer.git
cd agglayer
git checkout "${{ github.event.before }}"
echo "Containerizing and testing commit: ${{ github.event.before }}"
docker compose -f docker/docker-compose.yaml build --no-cache agglayer
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Clone internal kurtosis-cdk repo
run: |
git clone https://github.com/0xPolygon/kurtosis-cdk.git
cd kurtosis-cdk
git checkout dan/jit_containers
- name: Install kurtosis
run: |
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list
sudo apt update
sudo apt install kurtosis-cli
- name: Run kurtosis agent in background, may remove
run: |
kurtosis gateway & # Run cmd in background
- name: Deploy CDK devnet on local github runner
run: |
cd kurtosis-cdk
kurtosis engine restart
kurtosis run --enclave cdk-v1 --args-file params.yml .
- name: Monitor and report any potential regressions to CI logs
run: |
bake_time="${{ github.event.inputs.bake_time }}"
end_minute=$(( $(date +'%M') + bake_time))
export ETH_RPC_URL="$(kurtosis port print cdk-v1 zkevm-node-rpc-001 http-rpc)"
INITIAL_STATUS=$(cast rpc zkevm_verifiedBatchNumber 2>/dev/null)
incremented=false
while [ $(date +'%M') -lt $end_minute ]; do
# Attempt to connect to the service
if STATUS=$(cast rpc zkevm_verifiedBatchNumber 2>/dev/null); then
echo "ZKEVM_VERIFIED_BATCH_NUMBER: $STATUS"
# Check if STATUS has incremented
if [ "$STATUS" != "$INITIAL_STATUS" ]; then
incremented=true
echo "ZKEVM_VERIFIED_BATCH_NUMBER successfully incremented to $STATUS. Exiting..."
exit 0
fi
else
echo "Failed to connect, waiting and retrying..."
sleep 60
continue
fi
sleep 60
done
if ! $incremented; then
echo "ZKEVM_VERIFIED_BATCH_NUMBER did not increment. This may indicate chain experienced a regression. Please investigate."
exit 1
fi
- name: Finally, remove all devnet resources locally
run: |
cd kurtosis-cdk
kurtosis clean -a

0 comments on commit bfe2a00

Please sign in to comment.