-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathdata_pipeline_test.yml
More file actions
35 lines (32 loc) · 925 Bytes
/
data_pipeline_test.yml
File metadata and controls
35 lines (32 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Test pipeline
pr: none
trigger:
branches:
include:
- master
- main
paths:
include:
- scripts/
variables:
- group: datapipeline-vg
pool:
vmImage: ubuntu-latest
stages:
- stage: 'Test'
displayName: 'Test'
jobs:
- job: "Integration_test_job"
displayName: "Integration test job"
#dependsOn: [Deploy_to_Databricks, Deploy_to_ADF]
pool:
vmImage: 'ubuntu-latest'
timeoutInMinutes: 0
steps:
- task: AzurePowerShell@4
displayName: 'Execute ADF Pipeline'
inputs:
azureSubscription: $(AZURE_RM_CONNECTION)
ScriptPath: '$(Build.SourcesDirectory)/azure-data-pipeline/scripts/Invoke-ADFPipeline.ps1'
ScriptArguments: '-ResourceGroupName $(RESOURCE_GROUP) -DataFactoryName $(DATA_FACTORY_TEST_NAME) -PipelineName $(ADF_PIPELINE_NAME)'
azurePowerShellVersion: LatestVersion