Skip to content

Commit

Permalink
add new filter param + new runners (#216)
Browse files Browse the repository at this point in the history
* add new filter param + new runners

* consume master actions
  • Loading branch information
stewartie4 authored Apr 15, 2022
1 parent 184f310 commit dc96b89
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/system_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ on:
description: 'gosdk branch to deploy'
default: 'staging'
required: true
zdns_branch:
description: '0dns branch to deploy'
default: 'staging'
required: true
test_file_filter:
description: 'Comma separated list of test files to run (eg. zwalletcli_register_wallet_test.go, zwalletcli_send_and_balance_test.go). If supplied, the PR will NOT be notified of the test result'
default: ''
required: false
skip_tests:
description: '(LAST RESORT ONLY) Skip system tests. This will allow a PR to merge without requiring a green test run. *By using you certify that the code being merged is not causing system tests to fail*'
default: 'FALSE'
Expand All @@ -55,12 +55,13 @@ jobs:
blobber_branch: ${{ github.event.inputs.blobber_branch }}
validator_branch: ${{ github.event.inputs.validator_branch }}
zbox_branch: ${{ github.event.inputs.zbox_branch }}
zdns_branch: ${{ github.event.inputs.zdns_branch }}
zdns_branch: staging
gosdk_branch: ${{ github.event.inputs.gosdk_branch }}
zblock_branch: staging
explorer_branch: staging
zproxy_branch: staging
zsearch_branch: staging
test_file_filter: ${{ github.event.inputs.test_file_filter }}
skip_tests: ${{ github.event.inputs.skip_tests }}
secrets:
SVC_ACCOUNT_SECRET: ${{ secrets.SVC_ACCOUNT_SECRET }}
Expand All @@ -69,3 +70,7 @@ jobs:
DEV3KC: ${{ secrets.DEV3KC }}
DEV4KC: ${{ secrets.DEV4KC }}
DEV5KC: ${{ secrets.DEV5KC }}
DEV6KC: ${{ secrets.DEV6KC }}
DEV7KC: ${{ secrets.DEV7KC }}
DEV8KC: ${{ secrets.DEV8KC }}
DEV9KC: ${{ secrets.DEV9KC }}

0 comments on commit dc96b89

Please sign in to comment.