Testing for Batch Processing #56
6
.github/workflows/generic-testing.yml
vendored
6
.github/workflows/generic-testing.yml
vendored
@ -187,12 +187,6 @@ jobs:
|
|||||||
cd ipld-ethcl-indexer
|
cd ipld-ethcl-indexer
|
||||||
make integration-test-ci
|
make integration-test-ci
|
||||||
|
|
||||||
system-testing:
|
|
||||||
uses: ./.github/workflows/system-tests.yml
|
|
||||||
with:
|
|
||||||
stack-orchestrator-ref: ${{ env.stack-orchestrator-ref }}
|
|
||||||
ipld-ethcl-db-ref: ${{ env.ipld-ethcl-db-ref }}
|
|
||||||
|
|
||||||
golangci:
|
golangci:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
7
.github/workflows/on-pr.yml
vendored
7
.github/workflows/on-pr.yml
vendored
@ -25,7 +25,7 @@ on:
|
|||||||
- ".github/workflows/tests.yml"
|
- ".github/workflows/tests.yml"
|
||||||
- "**"
|
- "**"
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 13 * * *'
|
- cron: '0 13 * * *' # Must be single quotes!!
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
trigger-tests:
|
trigger-tests:
|
||||||
@ -36,3 +36,8 @@ jobs:
|
|||||||
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
||||||
secrets:
|
secrets:
|
||||||
GHA_KEY: ${{secrets.GHA_KEY}}
|
GHA_KEY: ${{secrets.GHA_KEY}}
|
||||||
|
system-testing:
|
||||||
|
uses: ./.github/workflows/system-tests.yml
|
||||||
|
with:
|
||||||
|
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
|
||||||
|
ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }}
|
||||||
|
9
.github/workflows/on-publish.yml
vendored
9
.github/workflows/on-publish.yml
vendored
@ -11,10 +11,17 @@ jobs:
|
|||||||
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
||||||
secrets:
|
secrets:
|
||||||
GHA_KEY: ${{secrets.GHA_KEY}}
|
GHA_KEY: ${{secrets.GHA_KEY}}
|
||||||
|
system-testing:
|
||||||
|
uses: ./.github/workflows/system-tests.yml
|
||||||
|
with:
|
||||||
|
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
|
||||||
|
ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }}
|
||||||
build:
|
build:
|
||||||
name: Run docker build
|
name: Run docker build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: trigger-tests
|
needs:
|
||||||
|
- trigger-tests
|
||||||
|
- system-testing
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Get the version
|
- name: Get the version
|
||||||
|
Loading…
Reference in New Issue
Block a user