Trigger Antithesis Subnet-EVM Setup #185
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: Trigger Antithesis Subnet-EVM Setup | |
| on: | |
| schedule: | |
| # When adjusting the schedule and duration of execution, make sure | |
| # to check the schedule of other antithesis jobs (trigger-antithesis-*). | |
| # The schedules for different test setups should not overlap to avoid | |
| # unintended resource contention. | |
| - cron: '0 14 * * *' # Every day at 2PM UTC | |
| workflow_dispatch: | |
| inputs: | |
| duration: | |
| description: 'The duration (in hours) to run the test for' | |
| default: '0.5' | |
| required: true | |
| type: string | |
| recipients: | |
| description: 'Comma-separated email addresses to send the test report to' | |
| required: true | |
| type: string | |
| image_tag: | |
| description: 'The image tag to target' | |
| default: latest | |
| required: true | |
| type: string | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| antithesis_subnet_evm: | |
| name: Run Antithesis Subnet-EVM Test Setup | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: antithesishq/antithesis-trigger-action@6c0a27302c0a3cd97d87d40bd6704e673abed4bb # v0.9 | |
| with: | |
| notebook_name: avalanche | |
| tenant: avalanche | |
| username: ${{ secrets.ANTITHESIS_USERNAME }} | |
| password: ${{ secrets.ANTITHESIS_PASSWORD }} | |
| github_token: ${{ secrets.ANTITHESIS_GH_PAT }} | |
| config_image: antithesis-subnet-evm-config:${{ github.event.inputs.image_tag || 'latest' }} | |
| images: antithesis-subnet-evm-workload:${{ github.event.inputs.image_tag || 'latest' }};antithesis-subnet-evm-node:${{ github.event.inputs.image_tag || 'latest' }} | |
| email_recipients: ${{ github.event.inputs.recipients || secrets.ANTITHESIS_RECIPIENTS }} | |
| # Duration is in hours | |
| additional_parameters: |- | |
| custom.duration=${{ github.event.inputs.duration || '4' }} | |
| custom.workload=subnet-evm |