Skip to content

Commit

Permalink
make ci gating job as parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-hpe committed Jun 9, 2024
1 parent 42efa4a commit ffce3cf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cicd-dev-acc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:

test-vmaas-instance:
uses: ./.github/workflows/reusable-dev-acc.yml
needs: [test-datasouces]
# needs: [test-datasouces]
needs: [test-provider]
if: "always()"
with:
test_case: TestVmaasInstance TestAccResourceInstance
Expand All @@ -32,7 +33,8 @@ jobs:

test-vmaas-lb:
uses: ./.github/workflows/reusable-dev-acc.yml
needs: [test-vmaas-instance]
# needs: [test-vmaas-instance]
needs: [test-provider]
if: "always()"
with:
test_case: TestVmaasLB TestAccResourceLB TestVmaasLoadBalancerPlan TestAccResourceLoadBalancerCreate
Expand All @@ -41,7 +43,8 @@ jobs:

test-vmaas-network:
uses: ./.github/workflows/reusable-dev-acc.yml
needs: [test-vmaas-lb]
# needs: [test-vmaas-lb]
needs: [test-provider]
if: "always()"
with:
test_case: TestVmaasNetworkPlan TestAccResourceNetworkCreate TestAccResourceRouter TestVmaasRouter TestAccResourceTier TestVmaasRouteBGPNeighborPlan
Expand Down

0 comments on commit ffce3cf

Please sign in to comment.