diff --git a/build/botframework-cli-beta.yml b/build/botframework-cli-beta.yml new file mode 100644 index 000000000..9569a54f6 --- /dev/null +++ b/build/botframework-cli-beta.yml @@ -0,0 +1,31 @@ +# +# Build Botframework-CLI daily bits on Windows agent +# + +# "name" here defines the build number format. Build number is accessed via $(Build.BuildNumber) +name: $(Build.BuildId) + +pool: + name: Hosted Windows 2019 with VS2019 + +pr: none +trigger: none + +schedules: +- cron: "0 7 * * *" + displayName: Daily midnight build for BETA branch (UTC Time) + branches: + include: + - beta + +variables: +- template: botframework-cli-version.yml # Template reference ${{ variables.releaseVersion }} +# version: define this in Azure, settable at queue time + +stages: +- stage: Build + jobs: + - job: + steps: + - script: echo '##vso[task.setvariable variable=_version]${{ variables.releaseVersion }}-beta + - template: bf-cli-build-test-steps.yml \ No newline at end of file