Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion build/ci/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ steps:
displayName: 'Build packages'
env:
JavaSdkDirectory: $(JAVA_HOME)
RUNNINGONCI: true
RepositoryCommit: $(Build.SourceVersion)
RepositoryBranch: $(Build.SourceBranchName)
RepositoryUrl: $(Build.Repository.Uri)
Expand Down
6 changes: 6 additions & 0 deletions build/ci/variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ variables:
mainBranchName: main # Name of Git "main" branch
configuration: Release # Build configuration: 'Debug', 'Release'
verbosity: 'normal' # Build verbosity: 'minimal', 'normal', 'diagnostic'
DOTNET_SYSTEM_NET_SECURITY_NOREVOCATIONCHECKBYDEFAULT: true
DOTNET_CLI_WORKLOAD_UPDATE_NOTIFY_DISABLE: true
DOTNET_SDK_VULNERABILITY_CHECK_DISABLE: true
NuGetAudit: false
DOTNET_CLI_TELEMETRY_OPTOUT: true
RUNNINGONCI: true

# Reporting variables
areaPath: DevDiv\VS Client - Runtime SDKs\Android # AzDo area path to log any issues
Expand Down
2 changes: 1 addition & 1 deletion tests/allpackages/TestAllIndividualPackages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async Task TestAllPackages (string template, bool isGps)
Directory.CreateDirectory (case_dir);

// Create new dotnet project
await RunAndAssertSuccess ($"new {template}", case_dir);
await RunAndAssertSuccess ($"new {template} --no-restore", case_dir);

// - Replace <SupportedOSPlatformVersion> with the maximum version some packages require
// - Remove the target frameworks that are not 'android'
Expand Down
2 changes: 1 addition & 1 deletion tests/extended/TestAllIndividualPackages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async Task TestPackage (string id, string version, string template)
Directory.CreateDirectory (case_dir);

// Create new dotnet project
await RunAndAssertSuccess ($"new {template}", case_dir);
await RunAndAssertSuccess ($"new {template} --no-restore", case_dir);

// - Replace <SupportedOSPlatformVersion> with the maximum version some packages require
// - Remove the target frameworks that are not 'android'
Expand Down
Loading