Skip to content

Commit

Permalink
Merge pull request #6664 from multiversx/sov-github-actions
Browse files Browse the repository at this point in the history
chain simulator integration tests run on sovereign feat branch
  • Loading branch information
axenteoctavian authored Feb 11, 2025
2 parents 87f389f + cbfda20 commit aee042a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
- 'master'
- 'rc/*'
- 'feat/chain-go-sdk'
workflow_dispatch:
issue_comment:
types: [created]
Expand Down Expand Up @@ -47,6 +48,9 @@ jobs:
elif [[ "${{ github.event.pull_request.base.ref }}" == "master" ]]; then
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=main" >> $GITHUB_ENV
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=main" >> $GITHUB_ENV
elif [[ "${{ github.event.pull_request.base.ref }}" == "feat/chain-go-sdk" ]]; then
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=main" >> $GITHUB_ENV
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=main" >> $GITHUB_ENV
else
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV
Expand Down Expand Up @@ -179,7 +183,7 @@ jobs:
- name: Upload test report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-report-${{ github.run_id }}
path: reports/report.html
Expand Down

0 comments on commit aee042a

Please sign in to comment.