fix: SQL Instance Pool - hard coding location of tests to make sure p… #3
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: "avm.res.sql.instance-pool" | |
on: | |
schedule: | |
- cron: "0 12 1/15 * *" # Bi-Weekly Test (on 1st & 15th of month) | |
workflow_dispatch: | |
inputs: | |
staticValidation: | |
type: boolean | |
description: "Execute static validation" | |
required: false | |
default: true | |
deploymentValidation: | |
type: boolean | |
description: "Execute deployment validation" | |
required: false | |
default: true | |
removeDeployment: | |
type: boolean | |
description: "Remove deployed module" | |
# We had to set this to false because the SQL Instance Pool takes more than 24 hours to get deleted | |
required: false | |
default: false | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/actions/templates/avm-**" | |
- ".github/workflows/avm.template.module.yml" | |
- ".github/workflows/avm.res.sql.instance-pool.yml" | |
- "avm/res/sql/instance-pool/**" | |
- "avm/utilities/pipelines/**" | |
- "!avm/utilities/pipelines/platform/**" | |
- "!*/**/README.md" | |
env: | |
modulePath: "avm/res/sql/instance-pool" | |
workflowPath: ".github/workflows/avm.res.sql.instance-pool.yml" | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
########################### | |
# Initialize pipeline # | |
########################### | |
job_initialize_pipeline: | |
runs-on: ubuntu-latest | |
name: "Initialize pipeline" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Set input parameters to output variables" | |
id: get-workflow-param | |
uses: ./.github/actions/templates/avm-getWorkflowInput | |
with: | |
workflowPath: "${{ env.workflowPath}}" | |
- name: "Get module test file paths" | |
id: get-module-test-file-paths | |
uses: ./.github/actions/templates/avm-getModuleTestFiles | |
with: | |
modulePath: "${{ env.modulePath }}" | |
outputs: | |
workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }} | |
moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }} | |
psRuleModuleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.psRuleModuleTestFilePaths }} | |
modulePath: "${{ env.modulePath }}" | |
############################## | |
# Call reusable workflow # | |
############################## | |
call-workflow-passing-data: | |
name: "Run" | |
permissions: | |
id-token: write # For OIDC | |
contents: write # For release tags | |
needs: | |
- job_initialize_pipeline | |
uses: ./.github/workflows/avm.template.module.yml | |
with: | |
workflowInput: "${{ needs.job_initialize_pipeline.outputs.workflowInput }}" | |
moduleTestFilePaths: "${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}" | |
psRuleModuleTestFilePaths: "${{ needs.job_initialize_pipeline.outputs.psRuleModuleTestFilePaths }}" | |
modulePath: "${{ needs.job_initialize_pipeline.outputs.modulePath}}" | |
secrets: inherit |