Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add workflow #865

Merged
merged 1 commit into from
Sep 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/chimney-and-blobber-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Manual 0Chain Chimney and Blobber Tests"
concurrency:
group: "manual-chimney-blobber-tests-${{ github.ref }}-${{ github.event_name }}"
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
NETWORK_URL:
description: "Network to run system tests against. [example: dev.0chain.net]"
default: demo.zus.network
required: false

jobs:
system-tests:
name: "System Tests"
runs-on: [ tests-suite ]
steps:
- name: "Run System tests"
uses: 0chain/actions/run-system-tests@feature/chimney_blobber_rewards
with:
network: ${{ inputs.NETWORK_URL }}
deploy_report_page: true
archive_results: true
run_flaky_tests: false
run_api_system_tests: false
run_cli_system_tests: false
run_tokenomics_system_tests: false
run_chimney_blobber_tests: true
run_smoke_tests: false
TENDERLY_FORK_ID: ${{ secrets.TENDERLY_FORK_ID }}