小编Jem*_*Hah的帖子

用于 Azure Databricks 的 Azure DevOps 管道

不知道 Azure 数据块中的所有内容都可以基于 Azure DevOps 管道。我们计划使用 github 作为存储库。

就像 Azure 数据块可以在文件中编码,然后我可以在 git repo 中管理该文件吗?

我们可以使用 Azure DevOps CD 管道在 Azure Databricks 中进行部署吗?

azure azure-devops azure-databricks

6
推荐指数
1
解决办法
820
查看次数

Azure Devops - 矩阵策略 - 有条件作业运行

*请忽略格式问题

trigger:
 - none
parameters:
- name: stg
displayName: "Environment Names"
type: string
 
pool:
  vmImage: ubuntu-latest
stages:
  - stage: stage1
    displayName: 'Stage C1'
    jobs:
    - job: jobabc
      strategy:
        maxParallel: 2
        matrix: 
            env_1:
                EnvironmentX: E1
                Browser: IE
            env_2:
                EnvironmentX: E2
                Browser: Firefox
            env_3:
                EnvironmentX: E3
                Browser: Chrome
    displayName: 'Job 1'
    condition: contains('${{parameters.stg}}', $(EnvironmentX))}}  
    steps: 
    - task: CmdLine@2
      displayName: 'My Task '
      inputs:
        script: 'echo Stage C1 $(Browser)' 
Run Code Online (Sandbox Code Playgroud)

我将stg参数传递为E1E3E4.

在 Matrix 中我定义了EnvironmentX其值可以是E1, E2, or E3 …

azure azure-devops azure-pipelines azure-pipelines-yaml

2
推荐指数
1
解决办法
4554
查看次数