-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,122 additions
and
69 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 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
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,25 @@ | ||
# File: azure-pipelines\auth-client\instrumented-test.yml | ||
# Description: Run instrumented test for ADAL in a docker container | ||
name: Instrumented Tests | ||
|
||
trigger: | ||
- main | ||
|
||
pool: | ||
name: DockerBuildAgents | ||
|
||
resources: | ||
repositories: | ||
- repository: common | ||
type: github | ||
name: AzureAD/microsoft-authentication-library-common-for-android | ||
ref: dev | ||
endpoint: ANDROID_GITHUB | ||
|
||
jobs: | ||
- job: instrumentedTest | ||
displayName: Instrumented Test ADAL | ||
workspace: | ||
clean: all | ||
steps: | ||
- template: azure-pipelines/templates/steps/auth-client/docker-tasks.yml@common |
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,39 @@ | ||
# File: azure-pipelines\maven-release\adal-maven-release.yml | ||
# Description: Publish adal to maven central (sonatype) | ||
# https://search.maven.org/search?q=g:com.microsoft.aad%20AND%20a:adal | ||
# Variable 'AdalVersion' was defined in the Variables tab | ||
# Variable: 'ENV_VSTS_MVN_ANDROIDADAL_USERNAME' was defined in the Variables tab | ||
# Variable: 'mvnAccessToken' was defined in the Variables tab | ||
# https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate | ||
name: $(date:yyyyMMdd)$(rev:.r) | ||
|
||
trigger: none | ||
pr: none | ||
|
||
resources: | ||
repositories: | ||
- repository: self | ||
type: git | ||
ref: master | ||
- repository: common | ||
type: github | ||
name: AzureAD/microsoft-authentication-library-common-for-android | ||
ref: pedroro/release-pipelines | ||
endpoint: ANDROID_GITHUB | ||
|
||
jobs: | ||
- template: azure-pipelines/templates/steps/maven-release/maven-release-jobs.yml@common | ||
parameters: | ||
project: adal | ||
projectVersion: $(AdalVersion) | ||
checkoutSubmodules: recursive | ||
envVstsMvnAndroidAccessTokenVar: ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN | ||
gradleAssembleReleaseTask: adal:clean adal:assembleDist adal:javadocJar | ||
gradleGeneratePomFiletask: adal:generatePomFileForAdalPublication | ||
aarSourceFolder: C:\Temp\s\adal\outputs\aar | ||
jarSourceFolder: C:\Temp\s\adal\outputs\jar | ||
pomSourceFolder: C:\Temp\s\adal\publications\adal | ||
gpgAar: true | ||
gpgSourcesJar: true | ||
gpgJavadocJar: true | ||
gpgJar: false |
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,52 @@ | ||
# File: azure-pipelines\pull-request-validation\pr-adal.yml | ||
# Description: Assemble adal | ||
# Variable: 'ENV_VSTS_MVN_ANDROIDADACCOUNTS_USERNAME' was defined in the Variables tab | ||
# Variable: 'mvnAccessToken' was defined in the Variables tab | ||
# https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate | ||
name: $(date:yyyyMMdd)$(rev:.r) | ||
|
||
trigger: | ||
branches: | ||
include: | ||
- dev | ||
- master | ||
- release/* | ||
batch: True | ||
|
||
resources: | ||
repositories: | ||
- repository: common | ||
type: github | ||
name: AzureAD/microsoft-authentication-library-common-for-android | ||
ref: dev | ||
endpoint: ANDROID_GITHUB | ||
|
||
jobs: | ||
- job: Phase_1 | ||
displayName: Phase 1 | ||
cancelTimeoutInMinutes: 1 | ||
pool: | ||
name: Hosted Windows 2019 with VS2019 | ||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: recursive | ||
persistCredentials: True | ||
- template: azure-pipelines/templates/steps/credscan-policheck.yml@common | ||
parameters: | ||
policheckCmdLineArgsDir: adal | ||
- template: azure-pipelines/templates/steps/automation-cert.yml@common | ||
- task: Gradle@1 | ||
name: Gradle1 | ||
displayName: Assemble Release | ||
inputs: | ||
tasks: clean adal:assembleLocal | ||
publishJUnitResults: false | ||
jdkArchitecture: x86 | ||
sqAnalysisBreakBuildIfQualityGateFailed: false | ||
- template: azure-pipelines/templates/steps/spotbugs.yml@common | ||
parameters: | ||
project: adal | ||
- task: ComponentGovernanceComponentDetection@0 | ||
displayName: Component Detection | ||
... |
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,55 @@ | ||
# File: azure-pipelines\vsts-releases\adal-vsts-release.yml | ||
# Description: Publish adal to internal feed | ||
# https://identitydivision.visualstudio.com/Engineering/_packaging?_a=package&feed=AndroidADAL&package=com.microsoft.aad%3Aadal&protocolType=maven | ||
# Variable 'ENV_VSTS_MVN_ANDROIDADAL_USERNAME' was defined in the Variables tab | ||
# Variable 'mvnAccessToken' was defined in the Variables tab | ||
# https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate | ||
name: $(date:yyyyMMdd)$(rev:.r) | ||
|
||
trigger: none | ||
pr: none | ||
|
||
resources: | ||
repositories: | ||
- repository: self | ||
type: git | ||
ref: master | ||
- repository: common | ||
type: github | ||
name: AzureAD/microsoft-authentication-library-common-for-android | ||
ref: dev | ||
endpoint: ANDROID_GITHUB | ||
|
||
jobs: | ||
- job: Phase_1 | ||
displayName: Phase 1 | ||
cancelTimeoutInMinutes: 1 | ||
pool: | ||
name: Hosted Windows 2019 with VS2019 | ||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: recursive | ||
persistCredentials: True | ||
- task: CmdLine@1 | ||
displayName: Set MVN Access Token in Environment | ||
inputs: | ||
filename: echo | ||
arguments: '##vso[task.setvariable variable=ENV_VSTS_MVN_ANDROIDADAL_ACCESSTOKEN]$(mvnAccessToken)' | ||
- template: azure-pipelines/templates/steps/credscan-policheck.yml@common | ||
parameters: | ||
policheckCmdLineArgsDir: adal | ||
- task: Gradle@1 | ||
name: Gradle1 | ||
displayName: Assemble Release | ||
inputs: | ||
tasks: clean adal:assembleDist | ||
publishJUnitResults: false | ||
jdkArchitecture: x86 | ||
sqAnalysisBreakBuildIfQualityGateFailed: false | ||
- task: Gradle@2 | ||
displayName: Publish to VSTS | ||
inputs: | ||
tasks: adal:publish | ||
publishJUnitResults: false | ||
... |
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
v.Next | ||
---------- | ||
- [PATCH] Fixes crash due to missing exception handling. (#1606) | ||
- [PATCH] Adds API23 WebViewClient#onReceivedError overload (#1580) | ||
- [PATCH] Fixes for MFA setup using Authenticator app.(#1579) | ||
- [MINOR] Changes to Broker Validation to allow setting whether to trust debug brokers (prod brokers are always trusted). | ||
- [PATCH] Replaced deprecated PackageInfo.versionCode with PackageInfoCompat.getLongVersionCode(packageInfo) (#1584) | ||
- [PATCH] Fixes deprecated PackageInfo.signatures (#1587) | ||
- [PATCH] Deprecated ADAL namespaced AuthenticationSettings#setSecretKey(), #getSecretKey() (#1586) | ||
- Picks up [email protected] | ||
- [PATCH] Disregard pageload errors for the non-primary frame during interactive auth (#1603) | ||
- [PATCH] Updates Nimbus version 8.2 -> 9.9 (#1600) | ||
|
||
Version 3.1.2 | ||
------------- | ||
|
Oops, something went wrong.