update dockerfile for arm compatibility #362
Workflow file for this run
This file contains 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: 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}} |