build: modernize build system with PowerShellBuild and GitHub Actions#163
Merged
HeyItsGilbert merged 2 commits intomasterfrom May 2, 2026
Merged
build: modernize build system with PowerShellBuild and GitHub Actions#163HeyItsGilbert merged 2 commits intomasterfrom
HeyItsGilbert merged 2 commits intomasterfrom
Conversation
- Replace psake.ps1 with psakeFile.ps1 using PowerShellBuild -FromModule tasks - Rewrite build.ps1 with -Bootstrap switch using PSDepend for dependency management - Add requirements.psd1 listing all build dependencies (psake, PowerShellBuild, Pester, PSScriptAnalyzer, PSDeploy, BuildHelpers) - Add .github/workflows/ci.yml (replaces Appveyor) with matrix across ubuntu/windows/macOS - Switch test output to JUnitXml at ./Output/testResults.xml for CI artifact upload Closes #149 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Pin requirements.psd1 to specific known-good versions (psake 4.9.1, PowerShellBuild 0.7.2, Pester 5.7.1, PSScriptAnalyzer 1.19.1, BuildHelpers 2.0.16) to avoid multi-version conflicts in psake's -FromModule module resolution - Simplify build.ps1 bootstrap to match gatekeeper pattern: PSDepend handles install+import, no explicit secondary Import-Module calls - Remove appveyor.yml and deploy.psdeploy.ps1 (superseded by .github/workflows/ci.yml and PowerShellBuild Publish task) - Update PlatyPS-generated docs stubs with proper parameter set syntax Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Member
Author
|
Tests will continue fail until we get get Pester fixed via #151. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
psake.ps1withpsakeFile.ps1using PowerShellBuild-FromModuletask delegationbuild.ps1with-Bootstrapswitch and PSDepend-managed dependencies (pinned to known-good versions)requirements.psd1with pinned versions: psake 4.9.1, PowerShellBuild 0.7.2, Pester 5.7.1, PSScriptAnalyzer 1.19.1, BuildHelpers 2.0.16appveyor.ymlwith.github/workflows/ci.yml(ubuntu/windows/macOS matrix,./build.ps1 -Bootstrap -Task Test)docs/en-US/for all public functionsdeploy.psdeploy.ps1(superseded by PowerShellBuildPublishtask)Test plan
./build.ps1 -Bootstrap -Task Testpasses locally on WindowsCloses #149
🤖 Generated with Claude Code