-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from mjcheetham/github-oauth-ui
Support OAuth based authentication on GitHub; include a UI refresh
- Loading branch information
Showing
136 changed files
with
4,140 additions
and
3,871 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
steps: | ||
- task: DotNetCoreInstaller@0 | ||
displayName: Install .NET Core SDK 2.2.100 | ||
inputs: | ||
packageType: sdk | ||
version: '2.2.100' | ||
- task: UseDotNet@2 | ||
displayName: Use .NET Core SDK 3.1.x | ||
inputs: | ||
packageType: sdk | ||
version: 3.1.x | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: Compile common code and macOS Helpers | ||
inputs: | ||
command: build | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Mac$(configuration)' | ||
- task: DotNetCoreCLI@2 | ||
displayName: Compile common code and macOS Helpers | ||
inputs: | ||
command: build | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Mac$(configuration)' | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: Run common unit tests | ||
inputs: | ||
command: test | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Mac$(configuration)' | ||
publishTestResults: true | ||
testRunTitle: 'Unit tests - common (macOS)' | ||
- task: DotNetCoreCLI@2 | ||
displayName: Run common unit tests | ||
inputs: | ||
command: test | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Mac$(configuration)' | ||
publishTestResults: true | ||
testRunTitle: 'Unit tests (macOS)' |
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 |
---|---|---|
@@ -1,50 +1,29 @@ | ||
steps: | ||
- task: ms-vseng.MicroBuildTasks.30666190-6959-11e5-9f96-f56098202fef.MicroBuildSigningPlugin@2 | ||
displayName: Install signing plugin | ||
condition: and(succeeded(), eq(variables['SignType'], 'real')) | ||
inputs: | ||
signType: '$(SignType)' | ||
- task: ms-vseng.MicroBuildTasks.30666190-6959-11e5-9f96-f56098202fef.MicroBuildSigningPlugin@2 | ||
displayName: Install signing plugin | ||
condition: and(succeeded(), eq(variables['SignType'], 'real')) | ||
inputs: | ||
signType: '$(SignType)' | ||
|
||
- task: DotNetCoreInstaller@0 | ||
displayName: Install .NET Core SDK 2.2.100 | ||
inputs: | ||
packageType: sdk | ||
version: '2.2.100' | ||
- task: UseDotNet@2 | ||
displayName: Use .NET Core SDK 3.1.x | ||
inputs: | ||
packageType: sdk | ||
version: 3.1.x | ||
|
||
- task: NuGetToolInstaller@0 | ||
displayName: Install NuGet tool >=4.3.0 | ||
inputs: | ||
versionSpec: '>=4.3.0' | ||
- task: DotNetCoreCLI@2 | ||
displayName: Compile common code and Windows Helpers | ||
inputs: | ||
command: build | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Windows$(configuration)' | ||
|
||
- task: NuGetCommand@2 | ||
displayName: Restore packages | ||
inputs: | ||
command: restore | ||
restoreSolution: 'Git-Credential-Manager.sln' | ||
configuration: 'Windows$(configuration)' | ||
|
||
- task: MSBuild@1 | ||
displayName: Compile common code and Windows helpers | ||
inputs: | ||
solution: 'Git-Credential-Manager.sln' | ||
configuration: 'Windows$(configuration)' | ||
|
||
- task: VSTest@2 | ||
displayName: Run common unit tests | ||
inputs: | ||
testAssemblyVer2: | | ||
out\shared\*.Tests\bin\**\*.Tests.dll | ||
configuration: 'Windows$(configuration)' | ||
otherConsoleOptions: '/Framework:.NETCoreApp,Version=2.1' | ||
testRunTitle: 'Unit tests - common (Windows)' | ||
|
||
# Uncomment once Windows helpers have unit tests | ||
# - task: VSTest@2 | ||
# displayName: Run helpers unit tests | ||
# inputs: | ||
# testAssemblyVer2: | | ||
# out\windows\*.Tests\bin\**\*.Tests.dll | ||
# configuration: 'Windows$(configuration)' | ||
# otherConsoleOptions: '/Framework:.NETFramework,Version=v4.6.1' | ||
# testRunTitle: 'Unit tests - helpers (Windows)' | ||
- task: DotNetCoreCLI@2 | ||
displayName: Run common unit tests | ||
inputs: | ||
command: test | ||
projects: 'Git-Credential-Manager.sln' | ||
arguments: '--configuration=Mac$(configuration)' | ||
publishTestResults: true | ||
testRunTitle: 'Unit tests (Windows)' | ||
|
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
Oops, something went wrong.