Acceptance Tests Running on HPE PCE Solution Deployment Tenant #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Acceptance Tests Running on HPE PCE Solution Deployment Tenant | |
on: | |
# Runs every 2 days once at 3AM | |
# schedule: | |
# - cron: '0 21 */2 * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
test_case: | |
description: 'Enter testcases sperated by space. Leave empty for all' | |
required: false | |
default: '' | |
type: string | |
test_description: | |
description: 'Enter description for the test' | |
required: true | |
default: 'Check all Terraform Testcases' | |
type: string | |
release: | |
types: [published] | |
jobs: | |
acc-test: | |
uses: ./.github/workflows/reusable-dev-acc.yml | |
with: | |
test_case: ${{ inputs.test_case }} | |
test_description: ${{ inputs.test_description }} | |
test_case_folder: 'acc-testcases' | |
secrets: | |
DEV_HPEGL_IAM_SERVICE_URL: ${{ secrets.HPEGL_IAM_SERVICE_URL }} | |
DEV_HPEGL_TENANT_ID: ${{ secrets.HPEGL_TENANT_ID }} | |
DEV_HPEGL_USER_SECRET: ${{ secrets.HPEGL_USER_SECRET }} | |
DEV_HPEGL_USER_ID: ${{ secrets.HPEGL_USER_ID }} | |
DEV_HPEGL_VMAAS_API_URL: ${{ secrets.HPEGL_VMAAS_API_URL }} | |
DEV_HPEGL_VMAAS_LOCATION: ${{ secrets.HPEGL_VMAAS_LOCATION }} | |
DEV_HPEGL_VMAAS_SPACE_NAME: ${{ secrets.HPEGL_VMAAS_SPACE_NAME}} | |
TF_ACC: ${{ secrets.TF_ACC }} |