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

consume feature/fall-back-to-previous-commit-test #966

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
steps:
- name: Check CI
id: check-ci
uses: 0chain/actions/get-build-state@master
uses: 0chain/actions/get-build-state@feature/fall-back-to-previous-commit-test
with:
github_token: ${{ github.token }}
repository: "0chain/system_test"
Expand All @@ -81,7 +81,7 @@ jobs:
github-token: ${{ github.token }}

- name: "Set PR status as pending"
uses: 0chain/actions/set-pr-status@master
uses: 0chain/actions/set-pr-status@feature/fall-back-to-previous-commit-test
if: steps.findPr.outputs.number && github.event.inputs.test_file_filter == ''
with:
pr_number: ${{ steps.findPr.outputs.pr }}
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

- name: "Deploy 0Chain"
if: github.event_name == 'push' || github.event.inputs.existing_network == ''
uses: 0chain/actions/deploy-0chain@master
uses: 0chain/actions/deploy-0chain@feature/fall-back-to-previous-commit-test
with:
repo_snapshots_branch: "${{ env.REPO_SNAPSHOTS_BRANCH }}"
kube_config: ${{ secrets[format('DEV{0}KC', env.RUNNER_NUMBER)] }}
Expand All @@ -208,7 +208,7 @@ jobs:
svc_account_secret: ${{ secrets.SVC_ACCOUNT_SECRET }}

- name: "Run System tests"
uses: 0chain/actions/run-system-tests@master
uses: 0chain/actions/run-system-tests@feature/fall-back-to-previous-commit-test
with:
repo_snapshots_branch: "${{ env.REPO_SNAPSHOTS_BRANCH }}"
system_tests_branch: ${{ env.CURRENT_BRANCH }}
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

- name: "Set PR status as ${{ job.status }}"
if: ${{ (success() || failure()) && steps.findPr.outputs.number && github.event.inputs.test_file_filter == '' }}
uses: 0chain/actions/set-pr-status@master
uses: 0chain/actions/set-pr-status@feature/fall-back-to-previous-commit-test
with:
pr_number: ${{ steps.findPr.outputs.pr }}
description: "System tests with default config ${{ job.status }}"
Expand Down
Loading