backend.yml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. name: backend
  2. on:
  3. push:
  4. branches:
  5. - master
  6. pull_request:
  7. # Cancel in progress workflows on pull_requests.
  8. # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
  9. concurrency:
  10. group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  11. cancel-in-progress: true
  12. # hack for https://github.com/actions/cache/issues/810#issuecomment-1222550359
  13. env:
  14. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3
  15. jobs:
  16. files-changed:
  17. name: detect what files changed
  18. runs-on: ubuntu-22.04
  19. timeout-minutes: 3
  20. # Map a step output to a job output
  21. outputs:
  22. api_docs: ${{ steps.changes.outputs.api_docs }}
  23. backend: ${{ steps.changes.outputs.backend_all }}
  24. backend_dependencies: ${{ steps.changes.outputs.backend_dependencies }}
  25. backend_any_type: ${{ steps.changes.outputs.backend_any_type }}
  26. migration_lockfile: ${{ steps.changes.outputs.migration_lockfile }}
  27. steps:
  28. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  29. - name: Check for backend file changes
  30. uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0
  31. id: changes
  32. with:
  33. token: ${{ github.token }}
  34. filters: .github/file-filters.yml
  35. api-docs:
  36. if: needs.files-changed.outputs.api_docs == 'true'
  37. needs: files-changed
  38. name: api docs test
  39. runs-on: ubuntu-22.04
  40. steps:
  41. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  42. - uses: getsentry/action-setup-volta@e4939d337b83760d13a9d7030a6f68c9d0ee7581 # v2.0.0
  43. - name: Setup sentry python env
  44. uses: ./.github/actions/setup-sentry
  45. id: setup
  46. with:
  47. snuba: true
  48. - name: Run API docs tests
  49. # install ts-node for ts build scripts to execute properly without potentially installing
  50. # conflicting deps when running scripts locally
  51. # see: https://github.com/getsentry/sentry/pull/32328/files
  52. run: |
  53. yarn add ts-node && make test-api-docs
  54. backend-test:
  55. if: needs.files-changed.outputs.backend == 'true'
  56. needs: files-changed
  57. name: backend test
  58. runs-on: ubuntu-22.04
  59. timeout-minutes: 60
  60. permissions:
  61. contents: read
  62. id-token: write
  63. strategy:
  64. # This helps not having to run multiple jobs because one fails, thus, reducing resource usage
  65. # and reducing the risk that one of many runs would turn red again (read: intermittent tests)
  66. fail-fast: false
  67. matrix:
  68. # XXX: When updating this, make sure you also update MATRIX_INSTANCE_TOTAL.
  69. instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  70. pg-version: ['14']
  71. env:
  72. # XXX: `MATRIX_INSTANCE_TOTAL` must be hardcoded to the length of `strategy.matrix.instance`.
  73. # If this increases, make sure to also increase `flags.backend.after_n_builds` in `codecov.yml`.
  74. MATRIX_INSTANCE_TOTAL: 11
  75. steps:
  76. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  77. - name: Setup sentry env
  78. uses: ./.github/actions/setup-sentry
  79. id: setup
  80. with:
  81. redis_cluster: true
  82. kafka: true
  83. snuba: true
  84. symbolicator: true
  85. peanutbutter: true
  86. # Right now, we run so few bigtable related tests that the
  87. # overhead of running bigtable in all backend tests
  88. # is way smaller than the time it would take to run in its own job.
  89. bigtable: true
  90. pg-version: ${{ matrix.pg-version }}
  91. - name: Run backend test (${{ steps.setup.outputs.matrix-instance-number }} of ${{ steps.setup.outputs.matrix-instance-total }})
  92. run: |
  93. make test-python-ci
  94. - name: Collect test data
  95. uses: ./.github/actions/collect-test-data
  96. if: ${{ !cancelled() }}
  97. with:
  98. artifact_path: .artifacts/pytest.json
  99. gcs_bucket: ${{ secrets.COLLECT_TEST_DATA_GCS_BUCKET }}
  100. gcp_project_id: ${{ secrets.COLLECT_TEST_DATA_GCP_PROJECT_ID }}
  101. workload_identity_provider: ${{ secrets.SENTRY_GCP_DEV_WORKLOAD_IDENTITY_POOL }}
  102. service_account_email: ${{ secrets.COLLECT_TEST_DATA_SERVICE_ACCOUNT_EMAIL }}
  103. matrix_instance_number: ${{ steps.setup.outputs.matrix-instance-number }}
  104. # Upload coverage data even if running the tests step fails since
  105. # it reduces large coverage fluctuations
  106. - name: Handle artifacts
  107. if: ${{ always() }}
  108. uses: ./.github/actions/artifacts
  109. with:
  110. token: ${{ secrets.CODECOV_TOKEN }}
  111. commit_sha: ${{ github.event.pull_request.head.sha }}
  112. backend-migration-tests:
  113. if: needs.files-changed.outputs.backend == 'true'
  114. needs: files-changed
  115. name: backend migration tests
  116. runs-on: ubuntu-22.04
  117. timeout-minutes: 30
  118. strategy:
  119. matrix:
  120. pg-version: ['14']
  121. steps:
  122. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  123. - name: Setup sentry env
  124. uses: ./.github/actions/setup-sentry
  125. id: setup
  126. with:
  127. snuba: true
  128. pg-version: ${{ matrix.pg-version }}
  129. - name: run tests
  130. run: |
  131. PYTEST_ADDOPTS="$PYTEST_ADDOPTS -m migrations --migrations --reruns 0" make test-python-ci
  132. # Upload coverage data even if running the tests step fails since
  133. # it reduces large coverage fluctuations
  134. - name: Handle artifacts
  135. if: ${{ always() }}
  136. uses: ./.github/actions/artifacts
  137. with:
  138. token: ${{ secrets.CODECOV_TOKEN }}
  139. commit_sha: ${{ github.event.pull_request.head.sha }}
  140. cli:
  141. if: needs.files-changed.outputs.backend == 'true'
  142. needs: files-changed
  143. name: cli test
  144. runs-on: ubuntu-22.04
  145. timeout-minutes: 10
  146. strategy:
  147. matrix:
  148. pg-version: ['14']
  149. steps:
  150. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  151. - name: Setup sentry env
  152. uses: ./.github/actions/setup-sentry
  153. id: setup
  154. with:
  155. pg-version: ${{ matrix.pg-version }}
  156. - name: Run test
  157. run: |
  158. make test-cli
  159. # Upload coverage data even if running the tests step fails since
  160. # it reduces large coverage fluctuations
  161. - name: Handle artifacts
  162. if: ${{ always() }}
  163. uses: ./.github/actions/artifacts
  164. with:
  165. token: ${{ secrets.CODECOV_TOKEN }}
  166. commit_sha: ${{ github.event.pull_request.head.sha }}
  167. requirements:
  168. if: needs.files-changed.outputs.backend_dependencies == 'true'
  169. needs: files-changed
  170. name: requirements check
  171. runs-on: ubuntu-22.04
  172. timeout-minutes: 3
  173. steps:
  174. - uses: getsentry/action-github-app-token@d4b5da6c5e37703f8c3b3e43abb5705b46e159cc # v3.0.0
  175. id: token
  176. continue-on-error: true
  177. with:
  178. app_id: ${{ vars.SENTRY_INTERNAL_APP_ID }}
  179. private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
  180. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  181. - uses: getsentry/action-setup-venv@a133e6fd5fa6abd3f590a1c106abda344f5df69f # v2.1.0
  182. with:
  183. python-version: 3.11.8
  184. cache-dependency-path: requirements-dev-frozen.txt
  185. install-cmd: python3 -m tools.hack_pip && pip install -q --constraint requirements-dev-frozen.txt pip-tools
  186. - name: check requirements
  187. run: |
  188. python -S -m tools.freeze_requirements
  189. if ! git diff --exit-code; then
  190. echo $'\n\nrun `make freeze-requirements` locally to update requirements'
  191. exit 1
  192. fi
  193. - name: apply any requirements changes
  194. if: steps.token.outcome == 'success' && github.ref != 'refs/heads/master' && always()
  195. uses: getsentry/action-github-commit@31f6706ca1a7b9ad6d22c1b07bf3a92eabb05632 # v2.0.0
  196. with:
  197. github-token: ${{ steps.token.outputs.token }}
  198. message: ':snowflake: re-freeze requirements'
  199. migration:
  200. if: needs.files-changed.outputs.migration_lockfile == 'true'
  201. needs: files-changed
  202. name: check migration
  203. runs-on: ubuntu-22.04
  204. strategy:
  205. matrix:
  206. pg-version: ['14']
  207. steps:
  208. - name: Checkout sentry
  209. uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  210. - name: Setup sentry env
  211. uses: ./.github/actions/setup-sentry
  212. id: setup
  213. with:
  214. pg-version: ${{ matrix.pg-version }}
  215. - name: Migration & lockfile checks
  216. env:
  217. SENTRY_LOG_LEVEL: ERROR
  218. PGPASSWORD: postgres
  219. run: |
  220. ./.github/workflows/scripts/migration-check.sh
  221. monolith-dbs:
  222. if: needs.files-changed.outputs.backend == 'true'
  223. needs: files-changed
  224. name: monolith-dbs test
  225. runs-on: ubuntu-22.04
  226. timeout-minutes: 20
  227. permissions:
  228. contents: read
  229. id-token: write
  230. steps:
  231. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  232. - name: Setup sentry env
  233. uses: ./.github/actions/setup-sentry
  234. id: setup
  235. - name: Run test
  236. run: |
  237. make test-monolith-dbs
  238. - name: Collect test data
  239. uses: ./.github/actions/collect-test-data
  240. if: ${{ !cancelled() }}
  241. with:
  242. artifact_path: .artifacts/pytest.monolith-dbs.json
  243. gcs_bucket: ${{ secrets.COLLECT_TEST_DATA_GCS_BUCKET }}
  244. gcp_project_id: ${{ secrets.COLLECT_TEST_DATA_GCP_PROJECT_ID }}
  245. workload_identity_provider: ${{ secrets.SENTRY_GCP_DEV_WORKLOAD_IDENTITY_POOL }}
  246. service_account_email: ${{ secrets.COLLECT_TEST_DATA_SERVICE_ACCOUNT_EMAIL }}
  247. # Upload coverage data even if running the tests step fails since
  248. # it reduces large coverage fluctuations
  249. - name: Handle artifacts
  250. if: ${{ always() }}
  251. uses: ./.github/actions/artifacts
  252. with:
  253. token: ${{ secrets.CODECOV_TOKEN }}
  254. commit_sha: ${{ github.event.pull_request.head.sha }}
  255. typing:
  256. if: needs.files-changed.outputs.backend == 'true'
  257. needs: files-changed
  258. name: backend typing
  259. runs-on: ubuntu-22.04
  260. timeout-minutes: 20
  261. steps:
  262. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  263. - uses: getsentry/action-setup-venv@a133e6fd5fa6abd3f590a1c106abda344f5df69f # v2.1.0
  264. with:
  265. python-version: 3.11.8
  266. cache-dependency-path: requirements-dev-frozen.txt
  267. install-cmd: python3 -m tools.hack_pip && pip install -r requirements-dev-frozen.txt
  268. - name: setup sentry (lite)
  269. run: |
  270. python3 -m tools.fast_editable --path .
  271. sentry init
  272. - run: mypy
  273. id: run
  274. - uses: getsentry/action-github-app-token@d4b5da6c5e37703f8c3b3e43abb5705b46e159cc # v3.0.0
  275. id: token
  276. continue-on-error: true
  277. with:
  278. app_id: ${{ vars.SENTRY_INTERNAL_APP_ID }}
  279. private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
  280. # only if `mypy` succeeds should we try and trim the blocklist
  281. - run: python3 -m tools.mypy_helpers.make_module_ignores
  282. id: regen-blocklist
  283. - run: git diff --exit-code
  284. - run: |
  285. # mypy does not have granular codes so don't allow specific messages to regress
  286. ! grep "'Settings' object has no attribute" .artifacts/mypy-all
  287. ! grep 'Cannot override class variable' .artifacts/mypy-all
  288. ! grep 'Exception type must be derived from BaseException' .artifacts/mypy-all
  289. ! grep 'Incompatible default for argument' .artifacts/mypy-all
  290. ! grep 'Incompatible return value type (got "HttpResponseBase"' .artifacts/mypy-all
  291. ! grep 'Incompatible types in "yield"' .artifacts/mypy-all
  292. ! grep 'Module "sentry.*has no attribute' .artifacts/mypy-all
  293. ! grep 'base class .* defined the type as.*Permission' .artifacts/mypy-all
  294. ! grep 'does not explicitly export attribute' .artifacts/mypy-all
  295. - name: apply blocklist changes
  296. if: |
  297. steps.token.outcome == 'success' &&
  298. steps.run.outcome == 'success' &&
  299. steps.regen-blocklist.outcome == 'success' &&
  300. github.ref != 'refs/heads/master' &&
  301. always()
  302. uses: getsentry/action-github-commit@31f6706ca1a7b9ad6d22c1b07bf3a92eabb05632 # v2.0.0
  303. with:
  304. github-token: ${{ steps.token.outputs.token }}
  305. message: ':knife: regenerate mypy module blocklist'
  306. # This check runs once all dependent jobs have passed
  307. # It symbolizes that all required Backend checks have succesfully passed (Or skipped)
  308. # This step is the only required backend check
  309. backend-required-check:
  310. needs:
  311. [
  312. api-docs,
  313. backend-test,
  314. backend-migration-tests,
  315. cli,
  316. files-changed,
  317. requirements,
  318. migration,
  319. monolith-dbs,
  320. typing,
  321. ]
  322. name: Backend
  323. # This is necessary since a failed/skipped dependent job would cause this job to be skipped
  324. if: always()
  325. runs-on: ubuntu-22.04
  326. steps:
  327. # If any jobs we depend on fail, we will fail since this is a required check
  328. # NOTE: A timeout is considered a failure
  329. - name: Check for failures
  330. if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
  331. run: |
  332. echo "One of the dependent jobs have failed. You may need to re-run it." && exit 1