-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move the asset-sync scrips into the assets-automation folder. update …
…links to it
- Loading branch information
Showing
12 changed files
with
27 additions
and
77 deletions.
There are no files selected for viewing
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Assets automation tooling | ||
|
||
This directory contains tooling pertaining to the _support_ of externalized assets created by the [azure-sdk test-proxy](../test-proxy/Azure.Sdk.Tools.TestProxy/README.md). | ||
|
||
| Directory | Description | | ||
|---|---| | ||
| [assets-maintenance-tool](./assets-maintenance-tool/README.md) | CLI tool used to scan, backup, and clean azure-sdk assets across all repositories. | | ||
| [assets-reporting](./assets-reporting/README.md) | CLI tool used to audit current repositories and find status of test-proxy adoption on a per-package basis. Used to generate weekly reporting. | | ||
| [asset-sync](./assets-reporting/README.md) | Deprecated initial version of `asset-sync` implementation. The current implementation ended up integrated directly into the `test-proxy` codebase, rather than existing as an external powershell script. | |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -42,35 +42,3 @@ stages: | |
testRunTitle: '$(OS) Maintenance tool tests against .NET' | ||
testResultsFormat: 'VSTest' | ||
mergeTestResults: true | ||
|
||
- job: CLI_Integration_Test | ||
name: Invoke CLI Tool | ||
strategy: | ||
matrix: | ||
Linux: | ||
Pool: azsdk-pool-mms-ubuntu-2204-general | ||
OS: 'Linux' | ||
|
||
pool: | ||
name: $(Pool) | ||
|
||
steps: | ||
- template: /eng/pipelines/templates/steps/install-dotnet.yml | ||
|
||
- script: 'dotnet test /p:ArtifactsPackagesDir=$(Build.ArtifactStagingDirectory) --logger trx $(Build.SourcesDirectory)/tools/assets-automation/assets-maintenance-tool/' | ||
displayName: 'Test' | ||
env: | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
DOTNET_MULTILEVEL_LOOKUP: 0 | ||
GIT_TOKEN: $(azuresdk-github-pat) | ||
GIT_COMMIT_OWNER: azure-sdk | ||
GIT_COMMIT_EMAIL: [email protected] | ||
|
||
- task: PublishTestResults@2 | ||
condition: succeededOrFailed() | ||
inputs: | ||
testResultsFiles: '**/*.trx' | ||
testRunTitle: '$(OS) Maintenance tool tests against .NET' | ||
testResultsFormat: 'VSTest' | ||
mergeTestResults: true |