-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6377 from multiversx/integrate-sys-tests-ci2
gh-action: Integrate system tests execution for each PR
- Loading branch information
Showing
1 changed file
with
336 additions
and
0 deletions.
There are no files selected for viewing
336 changes: 336 additions & 0 deletions
336
.github/workflows/build_and_run_chain_simulator_and_execute_system_test.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,336 @@ | ||
name: Chain Simulator Build and Integration Test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
- 'master' | ||
- 'rc/*' | ||
workflow_dispatch: | ||
issue_comment: | ||
types: [created] | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
build-and-test: | ||
if: | | ||
github.event_name == 'pull_request' || | ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, 'Run Tests:')) || | ||
github.event_name == 'workflow_dispatch' | ||
strategy: | ||
matrix: | ||
#TODO Include Macos support later on | ||
runs-on: [ubuntu-latest] | ||
runs-on: ${{ matrix.runs-on }} | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
TARGET_BRANCH: "" | ||
MX_CHAIN_GO_TARGET_BRANCH: "" | ||
MX_CHAIN_SIMULATOR_TARGET_BRANCH: "" | ||
MX_CHAIN_TESTING_SUITE_TARGET_BRANCH: "" | ||
|
||
steps: | ||
- name: Fetch Latest Comment | ||
if: github.event_name != 'issue_comment' | ||
uses: actions/github-script@v7 | ||
id: fetch_comment | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const comments = await github.rest.issues.listComments({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
}); | ||
// Filter for comments containing "Run Tests:" | ||
const latestComment = comments.data.reverse().find(comment => comment.body.includes('Run Tests:')); | ||
if (latestComment) { | ||
core.setOutput('latest_comment', latestComment.body); | ||
} else { | ||
core.setOutput('latest_comment', ''); | ||
} | ||
env: | ||
LATEST_COMMENT: ${{ steps.fetch_comment.outputs.latest_comment }} | ||
|
||
- name: Parse Comment for Branches | ||
run: | | ||
# Use fetched comment if available, otherwise use current event comment | ||
COMMENT="${{ steps.fetch_comment.outputs.latest_comment || github.event.comment.body }}" | ||
# Debug print the comment being used | ||
echo "Comment used for parsing: $COMMENT" | ||
# Extract branch names from the comment | ||
if echo "$COMMENT" | grep -q "mx-chain-simulator-go:"; then | ||
SIMULATOR_BRANCH=$(echo "$COMMENT" | grep "mx-chain-simulator-go:" | awk -F': ' '{print $2}') | ||
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=${SIMULATOR_BRANCH}" >> $GITHUB_ENV | ||
fi | ||
if echo "$COMMENT" | grep -q "mx-chain-testing-suite:"; then | ||
TESTING_SUITE_BRANCH=$(echo "$COMMENT" | grep "mx-chain-testing-suite:" | awk -F': ' '{print $2}') | ||
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=${TESTING_SUITE_BRANCH}" >> $GITHUB_ENV | ||
fi | ||
- name: Set up Go 1.20.7 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20.7 | ||
id: go | ||
|
||
- name: Checkout mx-chain-go | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'multiversx/mx-chain-go' | ||
ref: ${{ env.MX_CHAIN_GO_TARGET_BRANCH || github.head_ref || github.ref }} | ||
fetch-depth: 0 | ||
path: 'mx-chain-go' | ||
|
||
- name: Get Latest Commit Hash | ||
run: | | ||
cd mx-chain-go | ||
current_branch=$(git symbolic-ref --short HEAD) | ||
echo "CURRENT_BRANCH=${current_branch}" >> $GITHUB_ENV | ||
git fetch origin ${current_branch} --prune | ||
latest_commit_hash=$(git rev-parse origin/${current_branch}) | ||
echo "LATEST_COMMIT_HASH=${latest_commit_hash}" >> $GITHUB_ENV | ||
echo "Latest commit hash: ${latest_commit_hash}" | ||
- name: Determine Target Branches | ||
id: target_branch | ||
run: | | ||
echo "CURRENT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF_NAME}}" >> $GITHUB_ENV | ||
# Use branches from comment if they are set | ||
if [ -n "${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH }}" ]; then | ||
echo "Using comment-specified mx-chain-simulator-go branch: ${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH }}" | ||
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH }}" >> $GITHUB_ENV | ||
else | ||
if [[ "${{ github.event.pull_request.base.ref }}" == "main" ]]; then | ||
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=main" >> $GITHUB_ENV | ||
elif [[ "${{ github.event.pull_request.base.ref }}" == "master" ]]; then | ||
echo "MX_CHAIN_SIMULATOR_TARGET_BRANCH=main" >> $GITHUB_ENV | ||
fi | ||
fi | ||
if [ -n "${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH }}" ]; then | ||
echo "Using comment-specified mx-chain-testing-suite branch: ${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH }}" | ||
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH }}" >> $GITHUB_ENV | ||
else | ||
if [[ "${{ github.event.pull_request.base.ref }}" == "main" ]]; then | ||
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=main" >> $GITHUB_ENV | ||
elif [[ "${{ github.event.pull_request.base.ref }}" == "master" ]]; then | ||
echo "MX_CHAIN_TESTING_SUITE_TARGET_BRANCH=main" >> $GITHUB_ENV | ||
fi | ||
fi | ||
# Always set MX_CHAIN_GO_TARGET_BRANCH based on the PR base branch | ||
echo "MX_CHAIN_GO_TARGET_BRANCH=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV | ||
|
||
- name: Print Target Branches | ||
run: | | ||
echo "Current branch mx-chain-go: ${{ env.CURRENT_BRANCH }}" | ||
echo "mx-chain-go target branch: ${{ env.MX_CHAIN_GO_TARGET_BRANCH }}" | ||
echo "mx-chain-simulator-go target branch: ${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH }}" | ||
echo "mx-chain-testing-suite target branch: ${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH }}" | ||
- name: Checkout mx-chain-simulator-go | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'multiversx/mx-chain-simulator-go' | ||
ref: ${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH || github.event.pull_request.base.ref }} | ||
path: 'mx-chain-simulator-go' | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install Python Dependencies and Update go.mod | ||
run: | | ||
cd mx-chain-simulator-go | ||
pip install -r scripts/update-go-mod/requirements.txt | ||
python scripts/update-go-mod/update-go-mod.py $LATEST_COMMIT_HASH | ||
- name: Run go build | ||
run: | | ||
cd mx-chain-simulator-go/cmd/chainsimulator | ||
go build | ||
echo "CHAIN_SIMULATOR_BUILD_PATH=$(pwd)" >> $GITHUB_ENV | ||
- name: Checkout mx-chain-testing-suite | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'multiversx/mx-chain-testing-suite' | ||
path: 'mx-chain-testing-suite' | ||
fetch-depth: 0 | ||
ref: ${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH || github.event.pull_request.base.ref }} | ||
token: ${{ secrets.MVX_TESTER_GH_TOKEN }} | ||
|
||
- name: Install Dependencies | ||
run: | | ||
pip install -r mx-chain-testing-suite/requirements.txt | ||
echo "PYTHONPATH=mx-chain-testing-suite" >> $GITHUB_ENV | ||
- name: Run tests and generate HTML report | ||
run: | | ||
set +e | ||
pytest mx-chain-testing-suite/scenarios/ --html=report.html --self-contained-html --continue-on-collection-errors | ||
PYTEST_EXIT_CODE=$? | ||
set -e | ||
echo "PYTEST_EXIT_CODE=$PYTEST_EXIT_CODE" >> $GITHUB_ENV | ||
echo "Pytest exit code: $PYTEST_EXIT_CODE" | ||
if [ -f "report.html" ]; then | ||
echo "Report generated successfully." | ||
mkdir -p ./reports | ||
mv report.html ./reports/ | ||
else | ||
echo "Report not found." | ||
fi | ||
- name: Upload test report | ||
if: always() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: pytest-report-${{ github.run_id }} | ||
path: reports/report.html | ||
|
||
- name: Deploy Report to GitHub Pages | ||
if: always() | ||
id: deploy_report | ||
run: | | ||
# Navigate to the mx-chain-testing-suite directory | ||
cd mx-chain-testing-suite | ||
# Configure Git user | ||
git config user.name "GitHub Action" | ||
git config user.email "action@github.com" | ||
# Check if the report exists | ||
if [ -f "../reports/report.html" ]; then | ||
# Ensure we're on the 'gh-pages' branch and up to date | ||
git fetch --all | ||
git checkout gh-pages || git checkout --orphan gh-pages | ||
# Create a new directory for the report based on the current timestamp | ||
TIMESTAMP=$(date +'%d%m%Y-%H%M%S') | ||
echo "TIMESTAMP=$TIMESTAMP" >> $GITHUB_ENV | ||
REPORT_DIR="reports/${BRANCH_NAME}/${TIMESTAMP}" | ||
mkdir -p $REPORT_DIR | ||
# Move the report into the new directory | ||
cp ../reports/report.html $REPORT_DIR/index.html | ||
# Add and commit only the new report | ||
git add $REPORT_DIR/index.html | ||
git commit -m "Deploy Test Report at $BRANCH_NAME/$TIMESTAMP" | ||
# Set remote URL with authentication token | ||
git remote set-url origin https://x-access-token:${{ secrets.MVX_TESTER_GH_TOKEN }}@github.com/multiversx/mx-chain-testing-suite.git | ||
# Push changes to the remote 'gh-pages' branch | ||
git push --force origin gh-pages | ||
else | ||
echo "Report file not found, skipping deployment." | ||
fi | ||
- name: Update Index Page | ||
if: always() | ||
run: | | ||
cd mx-chain-testing-suite | ||
git fetch --all | ||
git checkout gh-pages || git checkout --orphan gh-pages | ||
if [ -d "docs" ]; then | ||
cd docs | ||
echo "<html><body><h1>Test Reports</h1><ul>" > index.html | ||
for report in $(ls ../reports); do | ||
echo "<li><a href='../reports/$report/index.html'>Report - $report</a></li>" >> index.html | ||
done | ||
echo "</ul></body></html>" >> index.html | ||
git add index.html | ||
git commit -m "Update Index of Reports" | ||
git push origin gh-pages --force | ||
else | ||
mkdir -p docs | ||
cd docs | ||
echo "<html><body><h1>Test Reports</h1><ul>" > index.html | ||
echo "</ul></body></html>" >> index.html | ||
echo "Docs directory was not found and has been created." | ||
fi | ||
- name: Comment PR with report link or error message | ||
if: always() | ||
uses: actions/github-script@v7 | ||
env: | ||
TIMESTAMP: ${{ env.TIMESTAMP }} | ||
BRANCH_NAME: ${{ env.BRANCH_NAME }} | ||
CURRENT_BRANCH: ${{ env.CURRENT_BRANCH }} | ||
MX_CHAIN_GO_TARGET_BRANCH: ${{ env.MX_CHAIN_GO_TARGET_BRANCH }} | ||
MX_CHAIN_SIMULATOR_TARGET_BRANCH: ${{ env.MX_CHAIN_SIMULATOR_TARGET_BRANCH }} | ||
MX_CHAIN_TESTING_SUITE_TARGET_BRANCH: ${{ env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH }} | ||
LATEST_COMMIT_HASH: ${{ env.LATEST_COMMIT_HASH }} | ||
PYTEST_EXIT_CODE: ${{ env.PYTEST_EXIT_CODE }} | ||
|
||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const timestamp = process.env.TIMESTAMP; | ||
const branchName = process.env.BRANCH_NAME; | ||
const currentBranch = process.env.CURRENT_BRANCH; | ||
const goTargetBranch = process.env.MX_CHAIN_GO_TARGET_BRANCH; | ||
const simulatorTargetBranch = process.env.MX_CHAIN_SIMULATOR_TARGET_BRANCH; | ||
const testingSuiteTargetBranch = process.env.MX_CHAIN_TESTING_SUITE_TARGET_BRANCH; | ||
const commitHash = process.env.LATEST_COMMIT_HASH; | ||
const exitCode = process.env.PYTEST_EXIT_CODE; | ||
const issue_number = context.issue.number; | ||
const owner = context.repo.owner; | ||
const repo = context.repo.repo; | ||
let message; | ||
if (timestamp && branchName && timestamp !== "" && branchName !== "") { | ||
const reportUrl = `https://multiversx.github.io/mx-chain-testing-suite/reports/${branchName}/${timestamp}/index.html`; | ||
message = ` | ||
📊 **MultiversX Automated Test Report:** [View Report](${reportUrl}) | ||
🔄 **Build Details:** | ||
- **mx-chain-go Commit Hash:** \`${commitHash}\` | ||
- **Current Branch:** \`${currentBranch}\` | ||
- **mx-chain-go Target Branch:** \`${goTargetBranch}\` | ||
- **mx-chain-simulator-go Target Branch:** \`${simulatorTargetBranch}\` | ||
- **mx-chain-testing-suite Target Branch:** \`${testingSuiteTargetBranch}\` | ||
🚀 **Environment Variables:** | ||
- **TIMESTAMP:** \`${timestamp}\` | ||
- **PYTEST_EXIT_CODE:** \`${exitCode}\` | ||
🎉 **MultiversX CI/CD Workflow Complete!** | ||
`; | ||
} else { | ||
message = "⚠️ No report was generated due to an error or cancellation of the process.\nPlease checkout gh action logs for details"; | ||
} | ||
github.rest.issues.createComment({ | ||
issue_number: issue_number, | ||
owner: owner, | ||
repo: repo, | ||
body: message | ||
}); | ||
- name: Fail job if tests failed | ||
if: always() | ||
run: | | ||
if [ "${{ env.PYTEST_EXIT_CODE }}" != "0" ]; then | ||
echo "Tests failed with exit code ${{ env.PYTEST_EXIT_CODE }}" | ||
exit 1 | ||
else | ||
echo "Tests passed successfully." | ||
fi |