-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,595 changed files
with
275,949 additions
and
172,478 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 'App - Jobs' | ||
|
||
parameters: | ||
- name: staticValidation | ||
displayName: Execute static validation | ||
type: boolean | ||
default: true | ||
- name: deploymentValidation | ||
displayName: Execute deployment validation | ||
type: boolean | ||
default: true | ||
- name: removeDeployment | ||
displayName: Remove deployed module | ||
type: boolean | ||
default: true | ||
- name: prerelease | ||
displayName: Publish prerelease module | ||
type: boolean | ||
default: false | ||
|
||
pr: none | ||
|
||
trigger: | ||
batch: true | ||
branches: | ||
include: | ||
- main | ||
paths: | ||
include: | ||
- '/.azuredevops/modulePipelines/ms.app.jobs.yml' | ||
- '/.azuredevops/pipelineTemplates/*.yml' | ||
- '/modules/app/job/*' | ||
- '/utilities/pipelines/*' | ||
exclude: | ||
- '/utilities/pipelines/deploymentRemoval/*' | ||
- '/**/*.md' | ||
|
||
variables: | ||
- template: '../../settings.yml' | ||
- group: 'PLATFORM_VARIABLES' | ||
- name: modulePath | ||
value: '/modules/app/job' | ||
|
||
stages: | ||
- template: /.azuredevops/pipelineTemplates/stages.module.yml | ||
parameters: | ||
staticValidation: '${{ parameters.staticValidation }}' | ||
deploymentValidation: '${{ parameters.deploymentValidation }}' | ||
removeDeployment: '${{ parameters.removeDeployment }}' | ||
prerelease: '${{ parameters.prerelease }}' |
50 changes: 50 additions & 0 deletions
50
.azuredevops/modulePipelines/ms.databricks.accessconnectors.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 'Databricks - Access Connectors' | ||
|
||
parameters: | ||
- name: staticValidation | ||
displayName: Execute static validation | ||
type: boolean | ||
default: true | ||
- name: deploymentValidation | ||
displayName: Execute deployment validation | ||
type: boolean | ||
default: true | ||
- name: removeDeployment | ||
displayName: Remove deployed module | ||
type: boolean | ||
default: true | ||
- name: prerelease | ||
displayName: Publish prerelease module | ||
type: boolean | ||
default: false | ||
|
||
pr: none | ||
|
||
trigger: | ||
batch: true | ||
branches: | ||
include: | ||
- main | ||
paths: | ||
include: | ||
- '/.azuredevops/modulePipelines/ms.databricks.accessconnectors.yml' | ||
- '/.azuredevops/pipelineTemplates/*.yml' | ||
- '/modules/databricks/access-connector/*' | ||
- '/utilities/pipelines/*' | ||
exclude: | ||
- '/utilities/pipelines/deploymentRemoval/*' | ||
- '/**/*.md' | ||
|
||
variables: | ||
- template: '../../settings.yml' | ||
- group: 'PLATFORM_VARIABLES' | ||
- name: modulePath | ||
value: '/modules/databricks/access-connector' | ||
|
||
stages: | ||
- template: /.azuredevops/pipelineTemplates/stages.module.yml | ||
parameters: | ||
staticValidation: '${{ parameters.staticValidation }}' | ||
deploymentValidation: '${{ parameters.deploymentValidation }}' | ||
removeDeployment: '${{ parameters.removeDeployment }}' | ||
prerelease: '${{ parameters.prerelease }}' |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: 'App - Jobs' | ||
|
||
on: | ||
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' | ||
required: false | ||
default: true | ||
prerelease: | ||
type: boolean | ||
description: 'Publish prerelease module' | ||
required: false | ||
default: false | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/actions/templates/**' | ||
- '.github/workflows/template.module.yml' | ||
- '.github/workflows/ms.app.jobs.yml' | ||
- 'modules/app/job/**' | ||
- 'utilities/pipelines/**' | ||
- '!utilities/pipelines/deploymentRemoval/**' | ||
- '!*/**/README.md' | ||
|
||
env: | ||
modulePath: 'modules/app/job' | ||
workflowPath: '.github/workflows/ms.app.jobs.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/getWorkflowInput | ||
with: | ||
workflowPath: '${{ env.workflowPath}}' | ||
- name: 'Get parameter file paths' | ||
id: get-module-test-file-paths | ||
uses: ./.github/actions/templates/getModuleTestFiles | ||
with: | ||
modulePath: '${{ env.modulePath }}' | ||
outputs: | ||
workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }} | ||
moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }} | ||
modulePath: '${{ env.modulePath }}' | ||
|
||
############################## | ||
# Call reusable workflow # | ||
############################## | ||
call-workflow-passing-data: | ||
name: 'Module' | ||
needs: | ||
- job_initialize_pipeline | ||
uses: ./.github/workflows/template.module.yml | ||
with: | ||
workflowInput: '${{ needs.job_initialize_pipeline.outputs.workflowInput }}' | ||
moduleTestFilePaths: '${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}' | ||
modulePath: '${{ needs.job_initialize_pipeline.outputs.modulePath}}' | ||
secrets: inherit |
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.