24fc6358d6
* Set starting slot and improve error gap capturing * Set starting slot and improve error gap capturing * Tests + Significant Refactor The code for historical processing has been significantly refactored to use a context to signify a shutdown. There have also been many tests added for historical and knownGaps processing. * Update MhKeys in test * Update correct values * Update Max Retry Genesis is not working as expected. * Ensure we release locks properly * Add ordered testing * Include system tests * Update workflow calls * Add secrets * Add required secrets * update path * Try using the absolute path * Remove volumes at the end. * Update system-tests.yml * Update system-tests.yml * Update test err * Update and test the shutdown * rename ethcl --> eth-beacon * Try forcing /bin/bash for docker-compose * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Use single quote cron * Dont run generic on schedule
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: Test Application On PR
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
stack-orchestrator-ref:
|
|
description: "The branch, commit or sha from stack-orchestrator to checkout"
|
|
required: false
|
|
default: "main"
|
|
ipld-eth-beacon-db-ref:
|
|
description: "The branch, commit or sha from ipld-eth-beacon-db to checkout"
|
|
required: false
|
|
default: "main"
|
|
ssz-data-ref:
|
|
description: "The branch, commit or sha from ssz-data to checkout"
|
|
required: false
|
|
default: "main"
|
|
pull_request:
|
|
paths:
|
|
- "!**.md"
|
|
- "!.gitignore"
|
|
- "!LICENSE"
|
|
- "!.github/workflows/**"
|
|
- ".github/workflows/on-pr.yml"
|
|
- ".github/workflows/tests.yml"
|
|
- "**"
|
|
schedule:
|
|
- cron: '0 13 * * *' # Must be single quotes!!
|
|
|
|
jobs:
|
|
trigger-tests:
|
|
if: github.event_name != 'schedule'
|
|
uses: ./.github/workflows/generic-testing.yml
|
|
with:
|
|
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
|
|
ipld-eth-beacon-db-ref: ${{ github.event.inputs.ipld-eth-beacon-db-ref }}
|
|
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
|
secrets:
|
|
GHA_KEY: ${{secrets.GHA_KEY}}
|
|
system-testing:
|
|
uses: ./.github/workflows/system-tests.yml
|
|
with:
|
|
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
|
|
ipld-eth-beacon-db-ref: ${{ github.event.inputs.ipld-eth-beacon-db-ref }}
|
|
secrets:
|
|
GHA_KEY: ${{secrets.GHA_KEY}}
|
|
BC_ADDRESS: ${{secrets.BC_ADDRESS}}
|