Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dciborow/cicd #998

Merged
merged 4 commits into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_nightly_linux_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ trigger: none

pr: none

variables:
- group: LinuxAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Linux CPU'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_nightly_linux_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ trigger: none

pr: none

variables:
- group: LinuxAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Linux GPU'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ trigger: none

pr: none

variables:
- group: LinuxAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Linux Spark'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_nightly_win_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ trigger: none

pr: none

variables:
- group: WindowsAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Windows CPU'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

steps:
- script: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_nightly_win_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ trigger: none

pr: none

variables:
- group: WindowsAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Windows GPU'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

steps:
- script: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_nightly_win_pyspark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ trigger: none

pr: none

variables:
- group: WindowsAgentPool

jobs:
- job: nightly
displayName: 'Nightly tests Windows Pyspark'
timeoutInMinutes: 180 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

steps:
- script: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_notebook_linux_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: 'Unit tests Linux CPU on notebooks'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_notebook_linux_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: 'Unit tests Linux GPU on notebooks'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: 'Unit tests Linux PySpark on notebooks'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_notebook_win_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: unit
displayName: 'Unit tests Windows CPU on notebooks'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_notebook_win_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: unit
displayName: 'Unit tests Windows GPU on notebooks'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: notebook
displayName: "Notebook tests windows pyspark"
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_linux_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: "Unit tests Linux CPU"
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_linux_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: "Unit tests Linux GPU"
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_linux_pyspark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: LinuxAgentPool

jobs:
- job: unit
displayName: "Unit tests Linux PySpark"
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: recolinuxpool
name: $(Agent_Pool)

steps:
- bash: |
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_win_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: unit
displayName: 'Unit tests Windows CPU'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_win_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: unit
displayName: 'Unit tests Windows GPU'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down
5 changes: 4 additions & 1 deletion tests/ci/azure_pipeline_test/dsvm_unit_win_pyspark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ trigger:
- staging
- master

variables:
- group: WindowsAgentPool

jobs:
- job: unit
displayName: 'Unit tests Windows GPU'
timeoutInMinutes: 20 # how long to run the job before automatically cancelling
pool:
name: RecommendersAgentPoolWin
name: $(Agent_Pool)

# workspace:
# clean: all
Expand Down