-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Convert powershell/PowerShell-CI-macos to GitHub Actions #24914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert powershell/PowerShell-CI-macos to GitHub Actions #24914
Conversation
update to use existing actions
0638356
to
2f343e1
Compare
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
…actions-20250131-233951
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
📣 Hey @TravisEz13, how did we do? We would love to hear your feedback with the link below! 🗣️ 🔗 https://aka.ms/PSRepoFeedback |
Overview
Copilot summary
This pull request includes significant changes to the CI workflows for Linux, macOS, and Windows, as well as the removal of the CodeQL analysis workflow. The most important changes include the addition of change detection jobs, path filters for pull requests, and the restructuring of various CI jobs to depend on the change detection results.
Removal of CodeQL Analysis Workflow
.github/workflows/codeql-analysis.yml
: Entire CodeQL analysis workflow removed.Linux CI Workflow Changes
.github/workflows/linux-ci.yml
: Added achanges
job for change detection, updated path filters for pull requests, and restructured CI jobs to depend on thechanges
job outputs. [1] [2] [3] [4] [5] [6] [7] [8]macOS CI Workflow Addition
.github/workflows/macos-ci.yml
: Added a new macOS CI workflow with change detection, path filters for pull requests, and various CI jobs that depend on thechanges
job outputs.Windows CI Workflow Changes
.github/workflows/windows-ci.yml
: Added achanges
job for change detection, updated path filters for pull requests, and restructured CI jobs to depend on thechanges
job outputs. [1] [2] [3] [4] [5] [6] [7] [8]Removal of Linux Test Stages in Azure Pipelines
.vsts-ci/linux.yml
: Removed theTestUbuntu
andTestContainer
stages, which included various test jobs for Ubuntu and container environments.