Paul Higinbotham d9a9b3ce88
Add AzDevOps CI implementations (#631)
* Fix yaml indentation

* More format fixes

* Temporarily remove compliance reference

* Fix test job

* Fix job name

* Update image pool

* Add build results copy

* Fix build copy typo

* Param fix

* Fix build artifact download

* Remove unneeded dir from install

* Fix Pester version comaptible with tests

* Fix unit tests

* Fix unit test location

* Fix unit test path

* Disable Bash tests

* Fix testpassed

* Re-enable CygWin bash tests

* Fix cygwin check error

* Typo

* Debug bash tests

* Save config.h from build for bash tests

* Fix config.h copy

* Change test clean up

* Allow some tests to run after others fail

* Reinstate Invoke-AzDOBuild

* Fix syntax errors

* Restore opensshtestinfo

* Fix typo

* Upload bash test results

* Debug bash tests 1

* Debug 2

* Remove debug code

* Fix test path error

* Set Pester version to 3.4.6 for AppVeyor runs
2022-11-14 13:14:50 -08:00

40 lines
826 B
PowerShell

##
## Azure DevOps CI build tools
## (TODO: Add appropriate copyright)
##
@{
RootModule = './AzDOBuildTools.psm1'
ModuleVersion = '1.0.0'
GUID = '0b8fa798-ea71-40c7-b9ab-a417958bb3c4'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'AzDO build tools for Win32-OpenSSH repository.'
PowerShellVersion = '5.1'
DotnetFrameworkVersion = '4.6.1'
CLRVersion = '4.0.0'
NestedModules = @(
'../OpenSSHCommonUtils.psm1',
'../OpenSSHBuildHelper.psm1',
'../OpenSSHTestHelper.psm1')
FunctionsToExport = @(
'Invoke-AzDOBuild',
'Install-OpenSSH',
'Invoke-OpenSSHTests',
'Copy-OpenSSHTestResults',
'Copy-BuildResults',
'Copy-UnitTests',
'Install-UnitTests',
'Clear-TestEnvironmentSetup')
}