diff --git a/azure-pipelines/get-tool-versions.yml b/azure-pipelines/get-tool-versions.yml index 8feb3cf..d4fe2e1 100644 --- a/azure-pipelines/get-tool-versions.yml +++ b/azure-pipelines/get-tool-versions.yml @@ -1,13 +1,25 @@ name: $(date:yyyyMMdd)$(rev:.r) trigger: none pr: none +schedules: +- cron: "0 3 * * *" + displayName: First daily build + branches: + include: + - master + always: true +- cron: "0 15 * * *" + displayName: Second daily build + branches: + include: + - master + always: true stages: - stage: Get_New_Versions dependsOn: [] jobs: - job: Get_Tool_Versions - timeoutInMinutes: 30 pool: name: Azure Pipelines vmImage: 'ubuntu-18.04' diff --git a/azure-pipelines/templates/run-ci-builds-steps.yml b/azure-pipelines/templates/run-ci-builds-steps.yml index 68fbbe8..f5a6634 100644 --- a/azure-pipelines/templates/run-ci-builds-steps.yml +++ b/azure-pipelines/templates/run-ci-builds-steps.yml @@ -22,7 +22,7 @@ steps: -SourceBranch $(BRANCH) ` -DefinitionId $(DEFINITION_ID) ` -SourceVersion $(COMMIT_SHA) ` - -ManifestLink $(MANIFEST_LINK) ` + -ManifestLink $(MANIFEST_URL) ` -WaitForBuilds $(WAIT_FOR_BUILDS) ` -ToolVersions "$(ToolVersions)" ` -RetryIntervalSec $(INTERVAL_SEC) `