Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EngSys] Combine Build Build and Build Test pipelines #15085

Merged
merged 19 commits into from
Jul 21, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bens comments and lint
  • Loading branch information
seankane-msft committed Jul 21, 2021
commit 377a09ef0dd25c17fac4c72b94ac8044c1966d44
2 changes: 1 addition & 1 deletion eng/pipelines/templates/steps/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ steps:
Write-Host "##[command]Check source file formatting in $(pwd)"
$files = Get-ChildItem -Path . -Filter *.go
if ($files.Count -gt 0) {
gofmt -s -l -d $files
gofmt -s -l -d
seankane-msft marked this conversation as resolved.
Show resolved Hide resolved
}
displayName: 'Format Check'
condition: succeededOrFailed()
Expand Down
5 changes: 1 addition & 4 deletions sdk/samples/azidentity/SDKV1Adapter/example_SDKV1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ var (
tenantID = os.Getenv("AZURE_TENANT_ID")
)

var (
location = os.Getenv("AZURE_LOCATION")
userAgent = "azidentitysample"
)
var location = os.Getenv("AZURE_LOCATION")

// ExampleNewDefaultAzureCredential for using the DefaultAzureCredential through the NewDefaultAzureCredentialAdapter and assigning the credential to the
// SDK V1 authorizer.
Expand Down