-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into attestation
- Loading branch information
Showing
3,111 changed files
with
354,846 additions
and
18,057 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
schedules: | ||
- cron: "0 0 * * *" | ||
displayName: Daily build | ||
branches: | ||
include: | ||
- master | ||
always: true | ||
|
||
pool: | ||
vmImage: 'Ubuntu-16.04' | ||
|
||
variables: | ||
IMAGE_TAG_PREFIX: $[format('1.0.{0:HHm}', pipeline.startTime)] | ||
|
||
steps: | ||
- task: Docker@2 | ||
displayName: Login to production ACR | ||
inputs: | ||
command: login | ||
containerRegistry: $(CONTAINER_REGISTRY_SERVICE_CONNECTION) | ||
|
||
- task: Docker@2 | ||
displayName: Login to dogfood ACR | ||
inputs: | ||
command: login | ||
containerRegistry: $(DOGFOOD_CONTAINER_REGISTRY_SERVICE_CONNECTION) | ||
|
||
- task: CopyFiles@2 | ||
inputs: | ||
SourceFolder: $(Build.SourcesDirectory) | ||
contents: .git/** | ||
targetFolder: $(Build.SourcesDirectory)/scripts/datacontainer | ||
|
||
- task: Docker@2 | ||
displayName: Build and Push | ||
inputs: | ||
command: buildAndPush | ||
Dockerfile: scripts/datacontainer/Dockerfile | ||
repository: $(CONTAINER_REGISTRY_REPOSITORY_NAME) | ||
tags: | | ||
latest | ||
$(IMAGE_TAG_PREFIX)$(Build.BuildNumber) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.