Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
path: ./images.tar

integration:
needs: build
needs: [build, lint]
runs-on: ${{ matrix.runner }}
timeout-minutes: 50
strategy:
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
IMAGE_PREFIX: ${{ secrets.IMAGE_PREFIX }}

integration-configs-db:
needs: build
needs: [build, lint]
runs-on: ${{ matrix.runner }}
timeout-minutes: 20
strategy:
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
make BUILD_IMAGE=quay.io/cortexproject/build-image:master-8b48921f71 TTY='' configs-integration-test

deploy_website:
needs: [build, test]
needs: [build, test, lint]
if: github.ref == 'refs/heads/master' && github.repository == 'cortexproject/cortex'
runs-on: ubuntu-24.04
container:
Expand Down
Loading