Skip to content

Commit

Permalink
Merge pull request #1004 from microsoft/miguel/cron_tasks
Browse files Browse the repository at this point in the history
added schedulers from yaml file
  • Loading branch information
miguelgfierro authored Dec 10, 2019
2 parents 667d3a6 + bbd4136 commit 216d558
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 13 deletions.
11 changes: 9 additions & 2 deletions tests/ci/azure_pipeline_test/dsvm_nightly_linux_cpu.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.


schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
- cron: "7 0 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 12 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down
10 changes: 8 additions & 2 deletions tests/ci/azure_pipeline_test/dsvm_nightly_linux_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
# Licensed under the MIT License.

schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
- cron: "7 4 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 16 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down
10 changes: 8 additions & 2 deletions tests/ci/azure_pipeline_test/dsvm_nightly_linux_pyspark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
# Licensed under the MIT License.

schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
- cron: "7 8 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 20 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down
13 changes: 10 additions & 3 deletions tests/ci/azure_pipeline_test/dsvm_nightly_win_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
# Licensed under the MIT License.

schedules:
- cron: "0 18 * * *"
displayName: Daily master cpu testing pipeline
- cron: "7 0 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 12 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down Expand Up @@ -60,4 +67,4 @@ jobs:
del /q /S %LOCALAPPDATA%\Temp\*
for /d %%i in (%LOCALAPPDATA%\Temp\*) do @rmdir /s /q "%%i"
displayName: 'Remove Temp Files'
condition: succeededOrFailed()
condition: succeededOrFailed()
11 changes: 9 additions & 2 deletions tests/ci/azure_pipeline_test/dsvm_nightly_win_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
# Licensed under the MIT License.

schedules:
- cron: "0 0 * * *"
displayName: Daily master gpu test pipeline
- cron: "7 4 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 16 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down
11 changes: 9 additions & 2 deletions tests/ci/azure_pipeline_test/dsvm_nightly_win_pyspark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
# Licensed under the MIT License.

schedules:
- cron: "0 06 * * *"
displayName: Daily master spark testing pipeline
- cron: "7 8 * * *"
displayName: Nightly build master
branches:
include:
- master
always: true
- cron: "7 20 * * *"
displayName: Nightly build staging
branches:
include:
- staging
always: true

trigger: none

Expand Down

0 comments on commit 216d558

Please sign in to comment.