Skip to content

Commit

Permalink
Merge branch 'develop' into feat/zetaclient-runtime-chains
Browse files Browse the repository at this point in the history
  • Loading branch information
swift1337 committed Jul 22, 2024
2 parents 942f77d + df6ff86 commit 4f826f1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
33 changes: 30 additions & 3 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
# https://docs.coderabbit.ai/guides/configure-coderabbit
language: "en-US"
early_access: false
chat: { auto_reply: true }
tone_instructions: >-
Maintain a formal tone, highlighting issues, and suggesting production-grade, elegant, and concise solutions.
reviews:
profile: chill
high_level_summary: true

# disables the cringe
poem: false

collapse_walkthrough: true
sequence_diagrams: true

path_filters:
- "!**/*.pb.go"
- "!**/*.pb.gw.go"
- "!**/*_pb.d.ts"

path_instructions:
- path: '**/*.go'
instructions: >-
Expand All @@ -13,8 +31,17 @@ reviews:
compatibility, and expressiveness.
- path: '**/*.sh'
instructions: >-
Review the shell scripts, point out issues relative to security,
performance, and maintainability.
Review the shell scripts, point out issues relative to security,
performance, and maintainability.
auto_review:
drafts: false
# disables review for new commits
auto_incremental_review: false
base_branches:
- develop
- develop

tools:
languagetool:
enabled: true
level: default
9 changes: 6 additions & 3 deletions .github/workflows/ci-nightly-performance-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
required: false
default: 'http://localhost:9545'
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC
# run at 6AM UTC Daily
# 6AM UTC -> 11PM PT
- cron: "0 6 * * *"

jobs:
nightly_evm_api_performance_test:
Expand All @@ -35,10 +37,10 @@ jobs:
- name: "CONFIGURE:PERFORMANCE:TEMPLATE"
env:
CLOUDFLARE_UUID: ${{ secrets.CLOUDFLARE_UUID }}
ENDPOINT: ${{ inputs.endpoint || 'http://localhost:9545' }}
run: |
# Replace -=endpoint_to_test=- placeholder in the art.yaml file with the endpoint_to_test value
sed -i "s|-=endpoint_to_test=-|${{inputs.endpoint}}|g" .github/actions/performance-tests/art.yaml
echo "CLOUDFLARE_UUID=${{ secrets.CLOUDFLARE_UUID }}" >> ${GITHUB_ENV}
sed -i "s|-=endpoint_to_test=-|${ENDPOINT}|g" .github/actions/performance-tests/art.yaml
# Replace -=CLOUDFLARE_UUID=- placeholder in the art.yaml file with the correct value
sed -i "s|-=CLOUDFLARE_UUID=-|${CLOUDFLARE_UUID}|g" .github/actions/performance-tests/art.yaml
cat .github/actions/performance-tests/art.yaml
Expand Down Expand Up @@ -109,5 +111,6 @@ jobs:
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
job_name: "NIGHTLY:EVM:API:PERFORMANCE:TEST"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_CI_ALERTS }}

0 comments on commit 4f826f1

Please sign in to comment.