2023-09-25 21:57:29 +00:00
|
|
|
# WARNING: This workflow is used by upstream workflows (jswaku, nwaku, gowaku) via workflow_call.
|
|
|
|
# DO NOT modify the name, inputs, or other parts of this workflow that might break upstream CI.
|
|
|
|
|
2023-09-13 08:12:12 +00:00
|
|
|
name: Run Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
2023-09-25 21:57:29 +00:00
|
|
|
# IMPORTANT: Do not change the name or properties of these inputs.
|
|
|
|
# If you add new required inputs make sure that they have default value or you make the change upstream as well
|
2023-09-13 08:12:12 +00:00
|
|
|
inputs:
|
|
|
|
nim_wakunode_image:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
test_type:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
debug:
|
|
|
|
required: false
|
|
|
|
type: string
|
|
|
|
default: ''
|
2023-10-23 14:53:56 +00:00
|
|
|
allure_reports:
|
|
|
|
required: false
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-09-13 08:12:12 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
NODE_JS: "18"
|
2023-09-25 21:57:29 +00:00
|
|
|
# Ensure test type conditions remain consistent.
|
2023-09-13 08:12:12 +00:00
|
|
|
WAKU_SERVICE_NODE_PARAMS: ${{ (inputs.test_type == 'go-waku-master') && '--min-relay-peers-to-publish=0' || '' }}
|
2023-09-13 08:20:50 +00:00
|
|
|
DEBUG: ${{ inputs.debug }}
|
2023-10-23 14:53:56 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.DEPLOY_TEST_REPORTS_PAT }}
|
2023-09-13 08:12:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
node:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
WAKUNODE_IMAGE: ${{ inputs.nim_wakunode_image }}
|
2023-10-23 14:53:56 +00:00
|
|
|
ALLURE_REPORTS: ${{ inputs.allure_reports }}
|
2023-09-13 08:12:12 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: waku-org/js-waku
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
|
|
|
|
- uses: ./.github/actions/npm
|
|
|
|
|
|
|
|
- run: npm run build:esm
|
2023-09-18 16:42:22 +00:00
|
|
|
|
|
|
|
- run: ${{ (inputs.test_type == 'node-optional') && 'npm run test:optional --workspace=@waku/tests' || 'npm run test:node' }}
|
2023-09-13 08:12:12 +00:00
|
|
|
|
2023-10-23 14:53:56 +00:00
|
|
|
- name: Merge allure reports
|
|
|
|
if: always() && env.ALLURE_REPORTS == 'true'
|
|
|
|
run: node ci/mergeAllureResults.cjs
|
|
|
|
|
|
|
|
- name: Get allure history
|
|
|
|
if: always() && env.ALLURE_REPORTS == 'true'
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
repository: waku-org/allure-jswaku
|
|
|
|
ref: gh-pages
|
|
|
|
path: gh-pages
|
|
|
|
token: ${{ env.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Setup allure report
|
|
|
|
if: always() && env.ALLURE_REPORTS == 'true'
|
|
|
|
uses: simple-elf/allure-report-action@master
|
|
|
|
id: allure-report
|
|
|
|
with:
|
|
|
|
allure_results: allure-results
|
|
|
|
gh_pages: gh-pages
|
|
|
|
allure_history: allure-history
|
|
|
|
keep_reports: 30
|
|
|
|
|
|
|
|
- name: Deploy report to Github Pages
|
|
|
|
if: always() && env.ALLURE_REPORTS == 'true'
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
personal_token: ${{ env.GITHUB_TOKEN }}
|
|
|
|
external_repository: waku-org/allure-jswaku
|
|
|
|
publish_branch: gh-pages
|
|
|
|
publish_dir: allure-history
|
|
|
|
|
2023-09-13 08:12:12 +00:00
|
|
|
- name: Upload debug logs on failure
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: ${{ inputs.test_type }}-debug.log
|
|
|
|
path: debug.log
|
|
|
|
|
2023-12-21 07:54:31 +00:00
|
|
|
- name: Sanitize log filenames
|
|
|
|
if: failure()
|
|
|
|
run: |
|
|
|
|
find packages/tests/log/ -type f | while read fname; do
|
|
|
|
dir=$(dirname "$fname")
|
|
|
|
base=$(basename "$fname")
|
|
|
|
sanitized_base=$(echo $base | tr -d '\"*:<>?|' | sed 's/[\\/\r\n]/_/g' | sed 's/_$//')
|
|
|
|
if [ "$base" != "$sanitized_base" ]; then
|
|
|
|
mv "$fname" "$dir/$sanitized_base"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2023-09-13 08:12:12 +00:00
|
|
|
- name: Upload logs on failure
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: ${{ inputs.test_type }}-logs
|
|
|
|
path: packages/tests/log/
|
2023-11-20 06:31:44 +00:00
|
|
|
|
|
|
|
- name: Create test summary
|
|
|
|
if: always() && env.ALLURE_REPORTS == 'true'
|
|
|
|
run: |
|
|
|
|
echo "## Run Information" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "- **NWAKU**: ${{ env.WAKUNODE_IMAGE }}" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "## Test Results" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "Allure report will be available at: https://waku-org.github.io/allure-jswaku/${{ github.run_number }}" >> $GITHUB_STEP_SUMMARY
|