acceptance.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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-24.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  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-24.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  61. name: Checkout sentry
  62. - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
  63. id: setup-node
  64. with:
  65. node-version-file: '.volta.json'
  66. - name: Step configurations
  67. id: config
  68. run: |
  69. echo "webpack-path=.webpack_cache" >> "$GITHUB_OUTPUT"
  70. echo "WEBPACK_CACHE_PATH=.webpack_cache" >> "$GITHUB_ENV"
  71. - name: webpack cache
  72. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  73. with:
  74. path: ${{ steps.config.outputs.webpack-path }}
  75. key: ${{ runner.os }}-v2-webpack-cache-${{ hashFiles('webpack.config.ts') }}
  76. - name: node_modules cache
  77. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  78. id: nodemodulescache
  79. with:
  80. path: node_modules
  81. key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock', 'api-docs/yarn.lock', '.volta.json') }}
  82. - name: Install Javascript Dependencies
  83. if: steps.nodemodulescache.outputs.cache-hit != 'true'
  84. run: yarn install --frozen-lockfile
  85. - name: webpack
  86. env:
  87. # this is fine to not have for forks, it shouldn't fail
  88. SENTRY_WEBPACK_WEBHOOK_SECRET: ${{ secrets.SENTRY_WEBPACK_WEBHOOK_SECRET }}
  89. CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
  90. # should set value either as `true` or `false`
  91. CODECOV_ENABLE_BA: ${{ needs.files-changed.outputs.frontend_all == 'true'}}
  92. GH_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
  93. run: |
  94. yarn build-acceptance
  95. - name: Build chartcuterie configuration module
  96. run: |
  97. make build-chartcuterie-config
  98. - name: Setup sentry env
  99. uses: ./.github/actions/setup-sentry
  100. id: setup
  101. with:
  102. snuba: true
  103. chartcuterie: true
  104. pg-version: ${{ matrix.pg-version }}
  105. - name: Run acceptance tests (#${{ steps.setup.outputs.matrix-instance-number }} of ${{ steps.setup.outputs.matrix-instance-total }})
  106. run: make run-acceptance
  107. - name: Collect test data
  108. uses: ./.github/actions/collect-test-data
  109. if: ${{ !cancelled() && needs.files-changed.outputs.backend_all == 'true' }}
  110. with:
  111. artifact_path: .artifacts/pytest.acceptance.json
  112. gcs_bucket: ${{ secrets.COLLECT_TEST_DATA_GCS_BUCKET }}
  113. gcp_project_id: ${{ secrets.COLLECT_TEST_DATA_GCP_PROJECT_ID }}
  114. workload_identity_provider: ${{ secrets.SENTRY_GCP_DEV_WORKLOAD_IDENTITY_POOL }}
  115. service_account_email: ${{ secrets.COLLECT_TEST_DATA_SERVICE_ACCOUNT_EMAIL }}
  116. matrix_instance_number: ${{ steps.setup.outputs.matrix-instance-number }}
  117. # This job runs when FE or BE changes happen, however, we only upload coverage data for
  118. # BE changes since it conflicts with codecov's carry forward functionality
  119. # Upload coverage data even if running the tests step fails since
  120. # it reduces large coverage fluctuations
  121. - name: Handle artifacts
  122. uses: ./.github/actions/artifacts
  123. if: ${{ always() && needs.files-changed.outputs.backend_all == 'true' }}
  124. with:
  125. token: ${{ secrets.CODECOV_TOKEN }}
  126. commit_sha: ${{ github.event.pull_request.head.sha }}
  127. acceptance-required-checks:
  128. # this is a required check so we need this job to always run and report a status.
  129. if: always()
  130. name: Acceptance
  131. needs: [acceptance, files-changed]
  132. runs-on: ubuntu-24.04
  133. timeout-minutes: 3
  134. steps:
  135. - name: Check for failures
  136. if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
  137. run: |
  138. echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1