Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 6 additions & 0 deletions .github/workflows/_osdc-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ on:
required: false
type: boolean
default: true
run_compactor:
description: "Run compactor e2e tests after deploy"
required: false
type: boolean
default: true
skip_lint_test:
description: "Skip `just lint` and `just test` pre-flight checks (firefighting only)"
required: false
Expand Down Expand Up @@ -125,6 +130,7 @@ jobs:
compactor:
name: Compactor e2e tests
needs: deploy
if: ${{ inputs.run_compactor }}
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
timeout-minutes: 30
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/osdc-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
# Integration tests target pytorch-canary via CANARY_GITHUB_TOKEN —
# they don't belong in a prod deploy. Always skip.
run_integration: false
Comment thread
huydhn marked this conversation as resolved.
Outdated
# Compactor e2e tests patch the cluster-wide compactor Deployment,
# drain the target NodePool, and provision real capacity — too
# disruptive for prod. Validated against arc-staging pre-merge.
run_compactor: false
secrets:
META_AWS_ACC_ID: ${{ secrets.META_AWS_ACC_ID }}
META_AWS_DEPLOY_ROLE: ${{ secrets.META_AWS_DEPLOY_PROD_ROLE }}
Loading