removed unnecessary build image dependencies from develop pipeline (#432)

This commit is contained in:
Milamary
2023-09-01 18:25:07 -05:00
committed by GitHub
parent 1e02fe1641
commit 19cf9c5689

View File

@@ -95,7 +95,7 @@ jobs:
build-stg: build-stg:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build-dev, deploy-dev] needs: [deploy-dev]
steps: steps:
- name: Slack Notification - name: Slack Notification
uses: rtCamp/action-slack-notify@v2 uses: rtCamp/action-slack-notify@v2
@@ -137,7 +137,7 @@ jobs:
deploy-stg: deploy-stg:
needs: [build-dev, deploy-dev, build-stg] needs: [deploy-dev, build-stg]
runs-on: [self-hosted, azure] runs-on: [self-hosted, azure]
environment: stg environment: stg
steps: steps:
@@ -173,7 +173,7 @@ jobs:
build-preprod: build-preprod:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build-dev, deploy-dev] needs: [deploy-dev]
steps: steps:
- name: Slack Notification - name: Slack Notification
uses: rtCamp/action-slack-notify@v2 uses: rtCamp/action-slack-notify@v2
@@ -214,7 +214,7 @@ jobs:
SLACK_MESSAGE: "Failed to build ${{ env.PROJECT }} preprod! :this-is-fine:" SLACK_MESSAGE: "Failed to build ${{ env.PROJECT }} preprod! :this-is-fine:"
deploy-preprod: deploy-preprod:
needs: [build-dev, deploy-dev, build-preprod] needs: [deploy-dev, build-preprod]
runs-on: [self-hosted, azure] runs-on: [self-hosted, azure]
environment: stg environment: stg
steps: steps:
@@ -250,7 +250,7 @@ jobs:
build-cec-prd: build-cec-prd:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build-dev, deploy-dev, build-stg, deploy-stg, build-preprod, deploy-preprod] needs: [deploy-dev, deploy-stg, deploy-preprod]
steps: steps:
- name: Slack Notification - name: Slack Notification
uses: rtCamp/action-slack-notify@v2 uses: rtCamp/action-slack-notify@v2
@@ -291,7 +291,7 @@ jobs:
SLACK_MESSAGE: "Failed to build ${{ env.PROJECT }} cec-prd! :this-is-fine:" SLACK_MESSAGE: "Failed to build ${{ env.PROJECT }} cec-prd! :this-is-fine:"
deploy-cec-prd: deploy-cec-prd:
needs: [build-dev, deploy-dev, build-stg, deploy-stg, build-preprod, deploy-preprod, build-cec-prd] needs: [deploy-dev, deploy-stg, deploy-preprod, build-cec-prd]
runs-on: [self-hosted, azure] runs-on: [self-hosted, azure]
environment: prd environment: prd
steps: steps:
@@ -327,7 +327,7 @@ jobs:
build-cec-euprd: build-cec-euprd:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build-dev, deploy-dev, build-stg, deploy-stg, build-preprod, deploy-preprod] needs: [deploy-dev, deploy-stg, deploy-preprod]
steps: steps:
- name: Slack Notification - name: Slack Notification
uses: rtCamp/action-slack-notify@v2 uses: rtCamp/action-slack-notify@v2
@@ -369,7 +369,7 @@ jobs:
deploy-cec-euprd: deploy-cec-euprd:
needs: [build-dev, deploy-dev, build-stg, deploy-stg, build-preprod, deploy-preprod, build-cec-euprd] needs: [deploy-dev, deploy-stg, deploy-preprod, build-cec-euprd]
runs-on: [self-hosted, azure] runs-on: [self-hosted, azure]
environment: prd environment: prd
steps: steps: