Skip to content

Commit

Permalink
Synchronize tests-integration.yml from v8 and v7 (#2688)
Browse files Browse the repository at this point in the history
* Synchronize tests-integration.yml from v8 and v7

Co-authored-by: david alvarado <alvaradoda@vmware>

* set SKIP_STEMCELL_UPLOAD to false

this variable is now required and it is referenced in: https://github.com/cloudfoundry/cf-deployment-concourse-tasks/blob/701c6c18a6794788178afc8553027df9fe389394/bosh-deploy/task#L15C12-L15C32

Co-authored-by: Michael Oleske <[email protected]>

---------

Co-authored-by: M. Oleske <[email protected]>
Co-authored-by: david alvarado <alvaradoda@vmware>
Co-authored-by: Michael Oleske <[email protected]>
  • Loading branch information
4 people authored Dec 13, 2023
1 parent 35ca3ac commit 139c926
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests-integration-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ jobs:
export BOSH_DEPLOY_ARGS=""
export BOSH_LITE=false
export BBL_JSON_CONFIG=""
export SKIP_STEMCELL_UPLOAD=false
export OPS_FILES="add-persistent-isolation-segment-diego-cell.yml \
add-uaa-client-credentials.yml \
diego-cell-instances.yml \
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
run-integration-tests-cf-env-with-edge-capi:
name: Integration tests with EDGE CAPI
if: github.event.workflow_run.conclusion == 'success'
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/tests-integration-reusable.yml
with:
capi-version: edge
Expand All @@ -24,7 +24,7 @@ jobs:

run-integration-tests-cf-env-with-edge-capi-with-client-creds:
name: EDGE CAPI and client creds
if: github.event.workflow_run.conclusion == 'success'
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/tests-integration-reusable.yml
with:
capi-version: edge
Expand All @@ -35,7 +35,7 @@ jobs:

run-integration-tests-cf-env-with-min-capi:
name: MIN CAPI
if: github.event.workflow_run.conclusion == 'success'
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
uses: ./.github/workflows/tests-integration-reusable.yml
with:
capi-version: min
Expand All @@ -46,7 +46,7 @@ jobs:

#run-integration-windows:
# name: Windows
# if: github.event.workflow_run.conclusion == 'success'
# if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
# uses: ./.github/workflows/tests-integration-reusable.yml
# with:
# capi-version: edge
Expand All @@ -57,7 +57,7 @@ jobs:

#run-integration-windows-client-credentials:
# name: Windows with client credentials
# if: github.event.workflow_run.conclusion == 'success'
# if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
# uses: ./.github/workflows/tests-integration-reusable.yml
# with:
# capi-version: edge
Expand Down

0 comments on commit 139c926

Please sign in to comment.