acceptance.yml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. strategy:
  45. # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
  46. # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
  47. fail-fast: false
  48. matrix:
  49. # XXX: When updating this, make sure you also update MATRIX_INSTANCE_TOTAL.
  50. instance: [0, 1, 2, 3, 4]
  51. pg-version: ['14']
  52. env:
  53. # XXX: MATRIX_INSTANCE_TOTAL must be hardcoded to the length of strategy.matrix.instance.
  54. MATRIX_INSTANCE_TOTAL: 5
  55. TEST_GROUP_STRATEGY: roundrobin
  56. steps:
  57. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  58. name: Checkout sentry
  59. - uses: getsentry/action-setup-volta@e4939d337b83760d13a9d7030a6f68c9d0ee7581 # v2.0.0
  60. - name: Step configurations
  61. id: config
  62. run: |
  63. echo "webpack-path=.webpack_cache" >> "$GITHUB_OUTPUT"
  64. echo "WEBPACK_CACHE_PATH=.webpack_cache" >> "$GITHUB_ENV"
  65. - name: webpack cache
  66. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  67. with:
  68. path: ${{ steps.config.outputs.webpack-path }}
  69. key: ${{ runner.os }}-v2-webpack-cache-${{ hashFiles('webpack.config.ts') }}
  70. - name: node_modules cache
  71. uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
  72. id: nodemodulescache
  73. with:
  74. path: node_modules
  75. key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock', 'api-docs/yarn.lock') }}
  76. - name: Install Javascript Dependencies
  77. if: steps.nodemodulescache.outputs.cache-hit != 'true'
  78. run: yarn install --frozen-lockfile
  79. - name: webpack
  80. env:
  81. # this is fine to not have for forks, it shouldn't fail
  82. SENTRY_WEBPACK_WEBHOOK_SECRET: ${{ secrets.SENTRY_WEBPACK_WEBHOOK_SECRET }}
  83. CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
  84. # should set value either as `true` or `false`
  85. CODECOV_ENABLE_BA: ${{ needs.files-changed.outputs.frontend_all == 'true'}}
  86. run: |
  87. yarn build-acceptance
  88. - name: Build chartcuterie configuration module
  89. run: |
  90. make build-chartcuterie-config
  91. - name: Setup sentry env
  92. uses: ./.github/actions/setup-sentry
  93. id: setup
  94. with:
  95. snuba: true
  96. chartcuterie: true
  97. pg-version: ${{ matrix.pg-version }}
  98. - name: Run acceptance tests (#${{ steps.setup.outputs.matrix-instance-number }} of ${{ steps.setup.outputs.matrix-instance-total }})
  99. run: make run-acceptance
  100. # This job runs when FE or BE changes happen, however, we only upload coverage data for
  101. # BE changes since it conflicts with codecov's carry forward functionality
  102. # Upload coverage data even if running the tests step fails since
  103. # it reduces large coverage fluctuations
  104. - name: Handle artifacts
  105. uses: ./.github/actions/artifacts
  106. if: ${{ always() && needs.files-changed.outputs.backend_all == 'true' }}
  107. with:
  108. token: ${{ secrets.CODECOV_TOKEN }}
  109. acceptance-required-checks:
  110. # this is a required check so we need this job to always run and report a status.
  111. if: always()
  112. name: Acceptance
  113. needs: [acceptance, files-changed]
  114. runs-on: ubuntu-22.04
  115. timeout-minutes: 3
  116. steps:
  117. - name: Check for failures
  118. if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
  119. run: |
  120. echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1