Skip to content
Closed
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: 1 addition & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,7 @@
"Vcap",
"VCAP",
"xiada",
"xmlparserv",
"yiliu",
"usgovcloudapi",
"Pnative",
Expand Down
14 changes: 7 additions & 7 deletions eng/common/pipelines/templates/archetype-typespec-emitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ extends:
-UseTypeSpecNext:$${{ parameters.UseTypeSpecNext }}
-EmitterPackagePath:${{ parameters.EmitterPackagePath }}
env:
NPM_CONFIG_USERCONFIG: $(emitterNpmrcPath)
npm_config_userconfig: $(emitterNpmrcPath)

- task: PowerShell@2
displayName: 'Run build script'
Expand All @@ -146,7 +146,7 @@ extends:
-EmitterPackagePath:${{ parameters.EmitterPackagePath }}
-GeneratorVersion: $(initialize.emitterVersion)
env:
NPM_CONFIG_USERCONFIG: $(emitterNpmrcPath)
npm_config_userconfig: $(emitterNpmrcPath)

- pwsh: |
$sourceBranch = '$(Build.SourceBranch)'
Expand Down Expand Up @@ -322,7 +322,7 @@ extends:
displayName: Install tsp-client
workingDirectory: $(Build.SourcesDirectory)/eng/common/tsp-client
env:
NPM_CONFIG_USERCONFIG: $(tspClientNpmrcPath)
npm_config_userconfig: $(tspClientNpmrcPath)

- pwsh: |
# Resolve EmitterPackageJsonOutputPath to absolute path if it's relative
Expand All @@ -349,7 +349,7 @@ extends:
displayName: Generate emitter-package.json and emitter-package-lock files
workingDirectory: $(Build.SourcesDirectory)/eng/common/tsp-client
env:
NPM_CONFIG_USERCONFIG: $(tspClientNpmrcPath)
npm_config_userconfig: $(tspClientNpmrcPath)

- ${{ parameters.InitializationSteps }}

Expand Down Expand Up @@ -424,7 +424,7 @@ extends:
workingDirectory: $(Build.SourcesDirectory)
continueOnError: true
env:
NPM_CONFIG_USERCONFIG: $(emitterNpmrcPath)
npm_config_userconfig: $(emitterNpmrcPath)

- template: /eng/common/pipelines/templates/steps/git-push-changes.yml
parameters:
Expand Down Expand Up @@ -580,7 +580,7 @@ extends:
-BuildArtifactsPath '$(buildArtifactsPath)/lock-files'
-EmitterPackagePath: ${{ parameters.EmitterPackagePath }}
env:
NPM_CONFIG_USERCONFIG: $(emitterNpmrcPath)
npm_config_userconfig: $(emitterNpmrcPath)

- task: PowerShell@2
displayName: 'Run test script'
Expand All @@ -592,7 +592,7 @@ extends:
-OutputDirectory "$(Build.ArtifactStagingDirectory)"
-EmitterPackagePath: ${{ parameters.EmitterPackagePath }}
env:
NPM_CONFIG_USERCONFIG: $(emitterNpmrcPath)
npm_config_userconfig: $(emitterNpmrcPath)

- template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ steps:
GH_TOKEN: $(azuresdk-github-pat)
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
${{ if ne(parameters.NpmConfigUserConfig, '') }}:
NPM_CONFIG_USERCONFIG: ${{ parameters.NpmConfigUserConfig }}
npm_config_userconfig: ${{ parameters.NpmConfigUserConfig }}
${{ if ne(parameters.NpmConfigRegistry, '') }}:
NPM_CONFIG_REGISTRY: ${{ parameters.NpmConfigRegistry }}
npm_config_registry: ${{ parameters.NpmConfigRegistry }}
3 changes: 2 additions & 1 deletion eng/common/pipelines/templates/steps/run-pester-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ parameters:
steps:

- pwsh: |
Install-Module -Name Pester -Force
. (Join-Path "$(Build.SourcesDirectory)" eng common scripts Helpers PSModule-Helpers.ps1)
Install-ModuleIfNotInstalled "Pester" "5.7.1" | Import-Module
displayName: Install Pester

# default test steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ steps:
displayName: Apply Documentation Updates
env:
${{ if ne(parameters.NpmConfigUserConfig, '') }}:
NPM_CONFIG_USERCONFIG: ${{ parameters.NpmConfigUserConfig }}
npm_config_userconfig: ${{ parameters.NpmConfigUserConfig }}
${{ if ne(parameters.NpmConfigRegistry, '') }}:
NPM_CONFIG_REGISTRY: ${{ parameters.NpmConfigRegistry }}
npm_config_registry: ${{ parameters.NpmConfigRegistry }}

- template: /eng/common/pipelines/templates/steps/git-push-changes.yml
parameters:
Expand Down
4 changes: 4 additions & 0 deletions eng/common/pipelines/templates/steps/verify-codeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ parameters:
- name: ArtifactPath
type: string
default: $(Build.ArtifactStagingDirectory)/PackageInfo
- name: Artifacts
type: object
default: []
- name: Repo
type: string
default: $(Build.Repository.Name)
Expand Down Expand Up @@ -29,4 +32,5 @@ steps:
-AzsdkPath '$(AZSDK)'
-PackageInfoDirectory '${{ parameters.ArtifactPath }}'
-SdkTypes ${{ join(',', parameters.SdkTypes) }}
-ArtifactsJson '${{ convertToJson(parameters.Artifacts) }}'
-Repo '${{ parameters.Repo }}'
46 changes: 7 additions & 39 deletions eng/common/scripts/Helpers/PSModule-Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,6 @@ function Update-PSModulePathForCI() {
}
}

function Get-ModuleRepositories([string]$moduleName) {
$DefaultPSRepositoryUrl = "https://www.powershellgallery.com/api/v2"
# List of modules+versions we want to replace with internal feed sources for reliability, security, etc.
$packageFeedOverrides = @{
'powershell-yaml' = 'https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-tools/nuget/v2'
}

$repoUrls = if ($packageFeedOverrides.Contains("${moduleName}")) {
@($packageFeedOverrides["${moduleName}"], $DefaultPSRepositoryUrl)
}
else {
@($DefaultPSRepositoryUrl)
}

return $repoUrls
}

function moduleIsInstalled([string]$moduleName, [string]$version) {
if (-not (Test-Path variable:script:InstalledModules)) {
$script:InstalledModules = @{}
Expand Down Expand Up @@ -100,13 +83,13 @@ function installModule([string]$moduleName, [string]$version, $repoUrl) {
Set-PSRepository -Name $repo.Name -InstallationPolicy "Trusted" | Out-Null
}

Write-Verbose "Installing module $moduleName with min version $version from $repoUrl"
Write-Verbose "Installing module $moduleName with version $version from $repoUrl"
# Install under CurrentUser scope so that the end up under $CurrentUserModulePath for caching
Install-Module $moduleName -MinimumVersion $version -Repository $repo.Name -Scope CurrentUser -Force -WhatIf:$false
Install-Module $moduleName -RequiredVersion $version -Repository $repo.Name -Scope CurrentUser -Force -WhatIf:$false
# Ensure module installed
$modules = (Get-Module -ListAvailable $moduleName)
if ($version -as [Version]) {
$modules = $modules.Where({ [Version]$_.Version -ge [Version]$version })
$modules = $modules.Where({ [Version]$_.Version -eq [Version]$version })
}
if ($modules.Count -eq 0) {
throw "Failed to install module $moduleName with version $version"
Expand Down Expand Up @@ -151,26 +134,11 @@ function Install-ModuleIfNotInstalled() {
$module = moduleIsInstalled -moduleName $moduleName -version $version
if ($module) { return $module }

$repoUrls = Get-ModuleRepositories $moduleName

foreach ($url in $repoUrls) {
try {
$module = installModule -moduleName $moduleName -version $version -repoUrl $url
}
catch {
if ($url -ne $repoUrls[-1]) {
Write-Warning "Failed to install powershell module from '$url'. Retrying with fallback repository"
Write-Warning $_
continue
}
else {
Write-Warning "Failed to install powershell module from $url"
throw
}
}
break
}
# Use internal Azure Artifacts feed only.
$repoUrl = "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-tools/nuget/v2"
Write-Host "Module '$moduleName' with version '$version' is not installed. Attempting to install from $repoUrl."

$module = installModule -moduleName $moduleName -version $version -repoUrl $repoUrl
Write-Verbose "Using module '$($module.Name)' with version '$($module.Version)'."
}
finally {
Expand Down
8 changes: 7 additions & 1 deletion eng/common/scripts/Mark-ReleasePlanCompletion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ function Process-Package([string]$packageInfoPath)
}

Write-Host "Marking release completion for package, name: $PackageName"
$releaseInfo = & $AzsdkExePath release-plan update-release-status --package-name $PackageName --language $LanguageDisplayName --status "Released"
$PackageVersion = $pkgInfo.Version
$releaseArgs = @("release-plan", "update-release-status", "--package-name", $PackageName, "--language", $LanguageDisplayName, "--status", "Released")
if ($PackageVersion)
{
$releaseArgs += @("--package-version", $PackageVersion)
}
$releaseInfo = & $AzsdkExePath @releaseArgs
if ($LASTEXITCODE -ne 0)
{
## Not all releases have a release plan. So we should not fail the script even if a release plan is missing.
Expand Down
16 changes: 16 additions & 0 deletions eng/common/scripts/Test-CodeownersForArtifacts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ param(
[string] $AzsdkPath,
[string] $PackageInfoDirectory,
[array] $SdkTypes,
[string] $ArtifactsJson,
[string] $Repo
)

Expand All @@ -12,9 +13,24 @@ Set-StrictMode -Version 3
$ErrorActionPreference = 'Stop'

$failedPackages = @()
$excludedArtifacts = @()
$artifacts = $ArtifactsJson | ConvertFrom-Json

foreach ($artifact in $artifacts) {
if ($artifact.PSObject.Properties.Name -contains "skipCodeownersVerification" -and $artifact.skipCodeownersVerification) {
$excludedArtifacts += $artifact.Name
}
}

Write-Host "Excluded artifacts: $($excludedArtifacts -join ', ')"

foreach ($pkgPropertiesFile in Get-ChildItem -Path $PackageInfoDirectory -Filter '*.json' -File) {
$pkgProperties = Get-Content -Raw -Path $pkgPropertiesFile | ConvertFrom-Json

if ($excludedArtifacts -contains $pkgProperties.Name) {
Write-Host "Skipping package: $($pkgProperties.Name) $($pkgProperties.DirectoryPath) because it is in the list of artifacts to exclude from validation."
continue
}
if ($SdkTypes -notcontains $pkgProperties.SdkType) {
Write-Host "Skipping package: $($pkgProperties.Name) $($pkgProperties.DirectoryPath) because its SdkType '$($pkgProperties.SdkType)' is not in the list of SdkTypes to validate."
continue
Expand Down
3 changes: 2 additions & 1 deletion eng/common/scripts/Verify-Resource-Ref.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
. (Join-Path $PSScriptRoot common.ps1)
Install-Module -Name powershell-yaml -RequiredVersion 0.4.7 -Force -Scope CurrentUser
. (Join-Path $PSScriptRoot Helpers PSModule-Helpers.ps1)
Install-ModuleIfNotInstalled "powershell-yaml" "0.4.7" | Import-Module
$ymlfiles = Get-ChildItem $RepoRoot -recurse | Where-Object {$_ -like '*.yml'}
$affectedRepos = [System.Collections.ArrayList]::new()

Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/aggregate-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extends:
displayName: 'Build all libraries that support Java $(JavaBuildVersion)'
inputs:
mavenPomFile: pom.xml
options: '$(DefaultOptions) -T 2C -DskipTests -Dgpg.skip -Dmaven.javadoc.skip=true -Dcodesnippet.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Djacoco.skip=true -Drevapi.skip=true -Dshade.skip=true -Dspotless.skip=true -pl !com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-4_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-13,!com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13,!com.azure.cosmos.spark:azure-cosmos-spark-account-data-resolver-sample,!com.azure.cosmos.kafka:azure-cosmos-kafka-connect,!com.microsoft.azure:azure-batch'
options: '$(DefaultOptions) -T 2C -DskipTests -Dgpg.skip -Dmaven.javadoc.skip=true -Dcodesnippet.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Djacoco.skip=true -Drevapi.skip=true -Dshade.skip=true -Dspotless.skip=true -pl !com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-4_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-12,!com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-13,!com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13,!com.azure.cosmos.spark:azure-cosmos-spark_4-1_2-13,!com.azure.cosmos.spark:azure-cosmos-spark-account-data-resolver-sample,!com.azure.cosmos.kafka:azure-cosmos-kafka-connect,!com.microsoft.azure:azure-batch'
mavenOptions: '$(MemoryOptions) $(LoggingOptions)'
javaHomeOption: 'JDKVersion'
jdkVersionOption: $(JavaBuildVersion)
Expand All @@ -63,7 +63,7 @@ extends:
displayName: 'Build remaining libraries with Java $(FallbackJavaBuildVersion)'
inputs:
mavenPomFile: pom.xml
options: '$(DefaultOptions) -T 2C -DskipTests -Dgpg.skip -Dmaven.javadoc.skip=true -Dcodesnippet.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Djacoco.skip=true -Drevapi.skip=true -Dspotless.skip=true -pl com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12,com.azure.cosmos.spark:azure-cosmos-spark_3-4_2-12,com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-12,com.azure.cosmos.spark:azure-cosmos-spark-account-data-resolver-sample,com.azure.cosmos.kafka:azure-cosmos-kafka-connect,com.microsoft.azure:azure-batch'
options: '$(DefaultOptions) -T 2C -DskipTests -Dgpg.skip -Dmaven.javadoc.skip=true -Dcodesnippet.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Djacoco.skip=true -Drevapi.skip=true -Dspotless.skip=true -pl com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12,com.azure.cosmos.spark:azure-cosmos-spark_3-4_2-12,com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-12,com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-13,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13,com.azure.cosmos.spark:azure-cosmos-spark_4-1_2-13,com.azure.cosmos.spark:azure-cosmos-spark-account-data-resolver-sample,com.azure.cosmos.kafka:azure-cosmos-kafka-connect,com.microsoft.azure:azure-batch'
mavenOptions: '$(MemoryOptions) $(LoggingOptions)'
javaHomeOption: 'JDKVersion'
jdkVersionOption: $(FallbackJavaBuildVersion)
Expand Down
13 changes: 11 additions & 2 deletions eng/pipelines/templates/stages/cosmos-emulator-matrix-pr.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,23 @@
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_3-5,com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-13"
},
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21'": {
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21": {
"ProfileFlag": "-Dspark-e2e_4-0_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.21",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
},
"Spark 4.1, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21": {
"ProfileFlag": "-Dspark-e2e_4-1_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.21",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-1_2-13"
},
"Kafka Integration Tests targeting Cosmos Emulator - Java 17": {
"ProfileFlag": "-Pkafka-emulator",
Expand Down
26 changes: 22 additions & 4 deletions eng/pipelines/templates/stages/cosmos-emulator-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,23 +119,41 @@
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_3-5,com.azure.cosmos.spark:azure-cosmos-spark_3-5_2-13"
},
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 17'": {
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 17": {
"ProfileFlag": "-Dspark-e2e_4-0_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.17",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
},
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21'": {
"Spark 4.0, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21": {
"ProfileFlag": "-Dspark-e2e_4-0_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.21",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-0_2-13"
},
"Spark 4.1, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 17": {
"ProfileFlag": "-Dspark-e2e_4-1_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.17",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-1_2-13"
},
"Spark 4.1, Scala 2.13 Integration Tests targeting Cosmos Emulator - Java 21": {
"ProfileFlag": "-Dspark-e2e_4-1_2-13",
"PROTOCOLS": "[\"Tcp\"]",
"DESIRED_CONSISTENCIES": "[\"Session\"]",
"JavaTestVersion": "1.21",
"AdditionalArgs": "-DACCOUNT_HOST=https://localhost:8081/ -Dhadoop.home.dir=D:/Hadoop -DCOSMOS.AZURE_COSMOS_DISABLE_NON_STREAMING_ORDER_BY=true",
"BuildOptions": "",
"ProjectListOverride": "com.azure:azure-cosmos,com.azure:azure-cosmos-test,com.azure:azure-cosmos-tests,com.azure.cosmos.spark:azure-cosmos-spark_3,com.azure.cosmos.spark:azure-cosmos-spark_4,com.azure.cosmos.spark:azure-cosmos-spark_4-1_2-13"
},
"Kafka Integration Tests targeting Cosmos Emulator - Java 11": {
"ProfileFlag": "-Pkafka-emulator",
Expand Down
Loading
Loading