mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 00:44:55 -06:00
Many Microsoft employees have contributed to the Windows Subsystem for Linux, this commit is the result of their work since 2016. The entire history of the Windows Subsystem for Linux can't be shared here, but here's an overview of WSL's history after it moved to it own repository in 2021: Number of commits on the main branch: 2930 Number of contributors: 31 Head over https://github.com/microsoft/WSL/releases for a more detailed history of the features added to WSL since 2021.
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
trigger:
|
|
branches:
|
|
include:
|
|
- main
|
|
paths:
|
|
include:
|
|
- 'localization/strings/en-US/Resources.resw'
|
|
|
|
# Schedule nightly build
|
|
# Cron syntax: "mm HH DD MM DW" = minutes, hours, days, months, day of week (UTC time)
|
|
schedules:
|
|
# "0 8" = 8AM UTC = 12AM PST
|
|
- cron: "0 8 * * *"
|
|
displayName: Nightly Touchdown Build Schedule
|
|
branches:
|
|
include:
|
|
- "main"
|
|
always: true
|
|
|
|
pool:
|
|
name: 'wsl-build'
|
|
|
|
steps:
|
|
- checkout : self
|
|
persistCredentials: true
|
|
|
|
- task: TouchdownBuildTask@4
|
|
displayName: Touchdown Build Localization
|
|
inputs:
|
|
environment: 'PRODEXT'
|
|
teamId: '38646'
|
|
authType: 'FederatedIdentity'
|
|
FederatedIdentityServiceConnection: 'Azure-Connection'
|
|
isPreview: false
|
|
resourceFilePath: |
|
|
localization\strings\en-US\Resources.resw;O:localization\strings\
|
|
storebroker\PDPs\en-us\PDP.xml;O:storebroker\PDPs\
|
|
localizationTarget: true
|
|
pseudoSetting: 'Excluded'
|
|
cultureMappingType: 'None'
|
|
|
|
- task: PipAuthenticate@1
|
|
inputs:
|
|
artifactFeeds: 'wsl'
|
|
|
|
- powershell: |
|
|
pip install --user -r tools/devops/requirements.txt
|
|
python tools/devops/create-change.py . "$env:token" "WSL localization" "Localization change from build: $env:buildId" "user/localization/$env:buildId"
|
|
|
|
displayName: Create pull request
|
|
env:
|
|
token: $(GithubPRToken)
|
|
buildId: $(Build.BuildId) |