Skip to content

IaC Tests for CI CD Gating Job #16

IaC Tests for CI CD Gating Job

IaC Tests for CI CD Gating Job #16

Workflow file for this run

name: Dev Acceptance Tests for CI CD
on:
workflow_dispatch:
jobs:
test-provider:
uses: ./.github/workflows/reusable-dev-acc.yml
with:
test_case: TestProvider
test_description: Check for valid terraform provider
secrets: inherit
test-datasouces:
needs:
- test-provider
if: "${{ needs.test-provider.result == 'success' }}"
uses: ./.github/workflows/reusable-dev-acc.yml
with:
test_case: TestAccDataSource
test_description: All data source test
secrets: inherit
test-vmaas-instance:
uses: ./.github/workflows/reusable-dev-acc.yml
needs:
- test-datasouces
if: "${{ needs.test-provider.result == 'success' }}"
with:
test_case: TestVmaasInstance TestAccResourceInstance
test_description: Instance test
secrets: inherit
test-vmaas-lb:
uses: ./.github/workflows/reusable-dev-acc.yml
needs:
- test-vmaas-instance
if: "${{ needs.test-provider.result == 'success' }}"
with:
test_case: TestVmaasLB TestAccResourceLB TestVmaasLoadBalancerPlan TestAccResourceLoadBalancerCreate
test_description: Loadbalancer test
secrets: inherit
test-vmaas-network:
uses: ./.github/workflows/reusable-dev-acc.yml
needs:
- test-vmaas-lb
if: "${{ needs.test-provider.result == 'success' }}"
with:
test_case: TestVmaasNetworkPlan TestAccResourceNetworkCreate TestAccResourceRouter TestVmaasRouter TestAccResourceTier TestVmaasRouteBGPNeighborPlan
test_description: Network test
secrets: inherit