From e89435ad7367f9252f0e193ef8126788b9a82a08 Mon Sep 17 00:00:00 2001 From: Jess Pomfret Date: Tue, 10 Oct 2023 15:30:48 +0000 Subject: [PATCH 1/2] Add repl commands to the psm1 (#9124) --- dbatools.psm1 | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/dbatools.psm1 b/dbatools.psm1 index da9f7d41d4..29af1844ee 100644 --- a/dbatools.psm1 +++ b/dbatools.psm1 @@ -854,11 +854,27 @@ if ($PSVersionTable.PSVersion.Major -lt 5) { 'New-DbaLinkedServerLogin', 'Remove-DbaLinkedServerLogin', 'Remove-DbaCredential', - 'Remove-DbaAgentProxy' + 'Remove-DbaAgentProxy', + 'Disable-DbaReplDistributor', + 'Enable-DbaReplDistributor', + 'Disable-DbaReplPublishing', + 'Enable-DbaReplPublishing', + 'New-DbaReplPublication', + 'Get-DbaReplArticle', + 'Get-DbaReplArticleColumn', + 'Add-DbaReplArticle', + 'Remove-DbaReplArticle', + 'Remove-DbaReplPublication', + 'New-DbaReplSubscription', + 'Remove-DbaReplSubscription', + 'New-DbaReplCreationScriptOptions', + 'Get-DbaReplSubscription', + 'Get-DbaReplDistributor', + 'Get-DbaReplPublication', + 'Get-DbaReplServer' ) $script:noncoresmo = @( # SMO issues - 'Get-DbaReplDistributor', 'Copy-DbaPolicyManagement', 'Copy-DbaDataCollector', 'Get-DbaPbmCategory', @@ -867,10 +883,8 @@ if ($PSVersionTable.PSVersion.Major -lt 5) { 'Get-DbaPbmObjectSet', 'Get-DbaPbmPolicy', 'Get-DbaPbmStore', - 'Get-DbaReplPublication', 'Test-DbaReplLatency', - 'Export-DbaReplServerSetting', - 'Get-DbaReplServer' + 'Export-DbaReplServerSetting' ) $script:windowsonly = @( # filesystem (\\ related), From f3798e201e087863d45aa8acacdb7d647b2277e7 Mon Sep 17 00:00:00 2001 From: Chrissy LeMaire Date: Tue, 10 Oct 2023 17:36:49 +0200 Subject: [PATCH 2/2] remove arm64, sql containerno longer supported --- .github/workflows/gallery.yml | 2 +- .github/workflows/integration-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gallery.yml b/.github/workflows/gallery.yml index 53933e40d9..4ac6b8c83e 100644 --- a/.github/workflows/gallery.yml +++ b/.github/workflows/gallery.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, arm64] + os: [ubuntu-latest] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 7c12604ba1..2d83f97a1d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, arm64] + os: [ubuntu-latest] steps: - uses: actions/checkout@v3