fix: deadlock when inserting tests and rollups (#843) #3459
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Worker CI | |
on: | |
push: | |
tags: | |
- prod-* | |
branches: | |
- main | |
- staging | |
pull_request: | |
merge_group: | |
permissions: | |
contents: "read" | |
id-token: "write" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Run Lint | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
build: | |
name: Build Worker | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} | |
codecovstartup: | |
name: Codecov Startup | |
needs: build | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
test: | |
name: Test | |
needs: [build] | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} | |
build-self-hosted: | |
name: Build Self Hosted Worker | |
needs: [build, test] | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} | |
staging: | |
name: Push Staging Image | |
needs: [build, test] | |
if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/main' || github.event.ref == 'refs/heads/staging') && github.repository_owner == 'codecov' }} | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
environment: staging | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} | |
production: | |
name: Push Production Image | |
needs: [build, test] | |
if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'codecov' }} | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
environment: production | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} | |
self-hosted: | |
name: Push Self Hosted Image | |
needs: [build-self-hosted, test] | |
secrets: inherit | |
if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'codecov' }} | |
uses: codecov/gha-workflows/.github/workflows/[email protected] | |
with: | |
push_rolling: true | |
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} |