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

added schedulers from yaml file #1004

Merged
merged 10 commits into from
Dec 10, 2019
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