acceptance.yml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # Also note that this name *MUST* match the filename because GHA
  2. # only provides the workflow name (https://docs.github.com/en/free-pro-team@latest/actions/reference/environment-variables#default-environment-variables)
  3. # and GH APIs only support querying by workflow *FILENAME* (https://developer.github.com/v3/actions/workflows/#get-a-workflow)
  4. name: acceptance
  5. on:
  6. push:
  7. branches:
  8. - master
  9. - releases/**
  10. pull_request:
  11. # Cancel in progress workflows on pull_requests.
  12. # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
  13. concurrency:
  14. group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  15. cancel-in-progress: true
  16. # hack for https://github.com/actions/cache/issues/810#issuecomment-1222550359
  17. env:
  18. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3
  19. NODE_OPTIONS: '--max-old-space-size=4096'
  20. jobs:
  21. files-changed:
  22. name: detect what files changed
  23. runs-on: ubuntu-22.04
  24. timeout-minutes: 3
  25. # Map a step output to a job output
  26. outputs:
  27. acceptance: ${{ steps.changes.outputs.acceptance }}
  28. backend_all: ${{ steps.changes.outputs.backend_all }}
  29. frontend_all: ${{ steps.changes.outputs.frontend_all }}
  30. steps:
  31. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  32. - name: Check for backend file changes
  33. uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0
  34. id: changes
  35. with:
  36. token: ${{ github.token }}
  37. filters: .github/file-filters.yml
  38. acceptance:
  39. if: needs.files-changed.outputs.acceptance == 'true'
  40. needs: files-changed
  41. name: acceptance
  42. runs-on: ubuntu-22.04
  43. timeout-minutes: 30
  44. permissions:
  45. contents: read
  46. id-token: write
  47. strategy:
  48. # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
  49. # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
  50. fail-fast: false
  51. matrix:
  52. # XXX: When updating this, make sure you also update MATRIX_INSTANCE_TOTAL.
  53. instance: [0, 1, 2, 3, 4]
  54. pg-version: ['14']
  55. env:
  56. # XXX: MATRIX_INSTANCE_TOTAL must be hardcoded to the length of strategy.matrix.instance.
  57. MATRIX_INSTANCE_TOTAL: 5
  58. TEST_GROUP_STRATEGY: roundrobin
  59. steps:
  60. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  61. name: Checkout sentry
  62. - uses: getsentry/action-setup-volta@e4939d337b83760d13a9d7030a6f68c9d0ee7581 # v2.0.0
  63. - name: Step configurations
  64. id: config
  65. run: |
  66. echo "webpack-path=.webpack_cache" >> "$GITHUB_OUTPUT"
  67. echo "WEBPACK_CACHE_PATH=.webpack_cache" >> "$GITHUB_ENV"
  68. - name: webpack cache
  69. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  70. with:
  71. path: ${{ steps.config.outputs.webpack-path }}
  72. key: ${{ runner.os }}-v2-webpack-cache-${{ hashFiles('webpack.config.ts') }}
  73. - name: node_modules cache
  74. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  75. id: nodemodulescache
  76. with:
  77. path: node_modules
  78. key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock', 'api-docs/yarn.lock') }}
  79. - name: Install Javascript Dependencies
  80. if: steps.nodemodulescache.outputs.cache-hit != 'true'
  81. run: yarn install --frozen-lockfile
  82. - name: webpack
  83. env:
  84. # this is fine to not have for forks, it shouldn't fail
  85. SENTRY_WEBPACK_WEBHOOK_SECRET: ${{ secrets.SENTRY_WEBPACK_WEBHOOK_SECRET }}
  86. CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
  87. # should set value either as `true` or `false`
  88. CODECOV_ENABLE_BA: ${{ needs.files-changed.outputs.frontend_all == 'true'}}
  89. GH_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
  90. run: |
  91. yarn build-acceptance
  92. - name: Build chartcuterie configuration module
  93. run: |
  94. make build-chartcuterie-config
  95. - name: Setup sentry env
  96. uses: ./.github/actions/setup-sentry
  97. id: setup
  98. with:
  99. snuba: true
  100. chartcuterie: true
  101. pg-version: ${{ matrix.pg-version }}
  102. - name: Run acceptance tests (#${{ steps.setup.outputs.matrix-instance-number }} of ${{ steps.setup.outputs.matrix-instance-total }})
  103. run: make run-acceptance
  104. - name: Collect test data
  105. uses: ./.github/actions/collect-test-data
  106. if: ${{ !cancelled() && needs.files-changed.outputs.backend_all == 'true' }}
  107. with:
  108. artifact_path: .artifacts/pytest.acceptance.json
  109. gcs_bucket: ${{ secrets.COLLECT_TEST_DATA_GCS_BUCKET }}
  110. gcp_project_id: ${{ secrets.COLLECT_TEST_DATA_GCP_PROJECT_ID }}
  111. workload_identity_provider: ${{ secrets.SENTRY_GCP_DEV_WORKLOAD_IDENTITY_POOL }}
  112. service_account_email: ${{ secrets.COLLECT_TEST_DATA_SERVICE_ACCOUNT_EMAIL }}
  113. matrix_instance_number: ${{ steps.setup.outputs.matrix-instance-number }}
  114. # This job runs when FE or BE changes happen, however, we only upload coverage data for
  115. # BE changes since it conflicts with codecov's carry forward functionality
  116. # Upload coverage data even if running the tests step fails since
  117. # it reduces large coverage fluctuations
  118. - name: Handle artifacts
  119. uses: ./.github/actions/artifacts
  120. if: ${{ always() && needs.files-changed.outputs.backend_all == 'true' }}
  121. with:
  122. token: ${{ secrets.CODECOV_TOKEN }}
  123. commit_sha: ${{ github.event.pull_request.head.sha }}
  124. acceptance-required-checks:
  125. # this is a required check so we need this job to always run and report a status.
  126. if: always()
  127. name: Acceptance
  128. needs: [acceptance, files-changed]
  129. runs-on: ubuntu-22.04
  130. timeout-minutes: 3
  131. steps:
  132. - name: Check for failures
  133. if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
  134. run: |
  135. echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1