-
Notifications
You must be signed in to change notification settings - Fork 2
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 Azure pipeline to GitHub Actions #4
base: main
Are you sure you want to change the base?
Conversation
|
Related to #3
Converts the Azure pipeline to GitHub Actions, implementing the specified jobs and variables as outlined in the issue.
.github/workflows/ci.yml
that mirrors the Azure pipeline's functionality. This includes setting up environment variablesbuild_pool
andlinux_image
, and configuring the workflow to trigger manually or on a schedule.GenerateMatrix
job to list agents to inspect and calculates a matrix for execution, closely following the Azure pipeline's steps.Inspect
job that depends onGenerateMatrix
, utilizing a matrix strategy for parallel execution. It includes steps to verify the accessibility of the Artifact Staging Directory and to publish artifacts, adapting Azure pipeline commands to GitHub Actions syntax..github/workflows/cd.yml
for future deployment processes, with comments outlining intended steps based on the Azure pipeline conversion.For more details, open the Copilot Workspace session.