mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* first part * fix session manager plugin * rework AWS installation * azure cosmos db tests * azure devops cli * add azmodules test * put brackets * add root folder * remove validate aliyun * add azure modules * update modules test * docker, baze, dotnetsdk * DACFx * add azdevopscli * change to Should -BeTrue * nitpicks * remove extra * add azurecli * remove BeforeAll for DACFx * a bit of refactoring * fix templates * remove disk space validation * rename to powershell modules * fix templates
13 lines
538 B
PowerShell
13 lines
538 B
PowerShell
####################################################################################
|
|
## File: Install-DACFx.ps1
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DACFx) for Windows
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$InstallerName = "DacFramework.msi"
|
|
$InstallerUrl = "https://go.microsoft.com/fwlink/?linkid=2128142"
|
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx" |