Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 34194e3

Browse files
authored
Adding yaml for daily beta branch (#941)
1 parent 46ecaa3 commit 34194e3

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

build/botframework-cli-beta.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#
2+
# Build Botframework-CLI daily bits on Windows agent
3+
#
4+
5+
# "name" here defines the build number format. Build number is accessed via $(Build.BuildNumber)
6+
name: $(Build.BuildId)
7+
8+
pool:
9+
name: Hosted Windows 2019 with VS2019
10+
11+
pr: none
12+
trigger: none
13+
14+
schedules:
15+
- cron: "0 7 * * *"
16+
displayName: Daily midnight build for BETA branch (UTC Time)
17+
branches:
18+
include:
19+
- beta
20+
21+
variables:
22+
- template: botframework-cli-version.yml # Template reference ${{ variables.releaseVersion }}
23+
# version: define this in Azure, settable at queue time
24+
25+
stages:
26+
- stage: Build
27+
jobs:
28+
- job:
29+
steps:
30+
- script: echo '##vso[task.setvariable variable=_version]${{ variables.releaseVersion }}-beta
31+
- template: bf-cli-build-test-steps.yml

0 commit comments

Comments
 (0)