Skip to content
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

[ci] Add Post Checkout Steps #1433

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .ci/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ parameters:
initSteps: [] # any steps to run before .NET global tools are installed
preBuildSteps: [] # any steps that need to run just before the main compilation starts
postBuildSteps: [] # any steps that need to run just after the main compilation ends
postCheckoutSteps: [] # any steps that need to run just after the repository was checked out
postDiffBuildSteps: [] # any steps that need to run after the API Diff ends
masterBranchName: 'main' # the "master" branch that should be used - can be something other than "master"
installAppleCertificates: 'true' # whether or not to install the Apple certificates and provisioning profiles
Expand Down Expand Up @@ -86,6 +87,8 @@ jobs:
steps:
- checkout: self
submodules: ${{ parameters.submodules }}
# custom post checkout steps
- ${{ parameters.postCheckoutSteps }}
# before the build starts, make sure the tooling is as expected
- bash: sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh ${{ parameters.mono }}
displayName: 'Switch to the latest Xamarin SDK'
Expand Down