Build Services for PHP Composer

MyGet Build Services allows you to connect to different types of source control systems:

  • Git
  • Mercurial (Hg)
  • Subversion (Svn)

Next to that, integration with several Source Control Repositories is available as well:

Once downloaded, source code can then be built using a number of different methodologies.

Note: MyGet Build Services has a 5 minute cooldown period between builds during which you can't trigger a build, manually or otherwise. Please contact MyGet support for more information about our dedicated Build Services offering to avoid this cooldown period.

The Build Process

Using MyGet Build Services, you have the opportunity to control exactly how your project gets built. MyGet Build Services works based on several conventions to run builds. It will scan the contents of your Source Control Repository looking for a file which it can work with. In order of precedence, the following files are searched for:

Based on the files found, the build process will be slightly different.

Build process for composer.json files

The following build steps will be run when building from package.json files:

  • Fetch source code
  • Register all of the MyGet upstream sources with PHP Composer in composer.json and add authentication details to auth.json
  • Update composer.json and set the version value to %PackageVersion%
  • Run php composer.phar run-script pre-myget --no-interaction (if applicable)
  • Run php composer.phar install --ignore-platform-reqs --no-dev --no-interaction
  • Run php composer.phar test --no-interaction
  • Run php composer.phar run-script post-myget --no-interaction (if applicable)
  • Push packages to your MyGet feed
  • Label sources (if enabled)

Build process for batch / PowerShell based builds

The following build steps will be run when building from batch or PowerShell scripts:

  • Fetch source code
  • Register all of the MyGet upstream sources with PHP Composer in composer.json and add authentication details to auth.json
  • Run batch or PowerShell script
  • Push packages to your MyGet feed
  • Label sources (if enabled)

Configuring Projects to Build

When needed, the project files or scripts to build can be specified in the build source configuration. If this setting is omitted, the default build process conventions will be used.

This setting can contain scripts (like .bat, .cmd and .ps1 files). Note that when configured, pre- and post-build scripts will be ignored unless manually added to this list.

Configure Projects to Build

Pre- and post-build steps

Pre- and post-build steps with composer.json files

When using composer.json files for builds, MyGet Build Services will run the pre-myget script before running any other PHP Composer commands, and post-myget after creating the PHP Composer package.

The PHP Composer documentation has additional information on creating scripts.

Pre- and post-build steps with batch / PowerShell based builds

When using batch / PowerShell based builds, MyGet Build Services will scan for batch files to be executed. In addition to the MyGet.bat (or .cmd or .ps1) and build.bat (or .cmd or .ps1), we search for pre- and post-build steps as well. These can be batch scripts or PowerShell scripts that are run before and after the actual build file.

The following files are detected as being pre-build steps:

  • pre-MyGet.bat, pre-MyGet.cmd or pre-MyGet.ps1
  • pre-build.bat, pre-build.cmd or pre-build.ps1

The following files are detected as being post-build steps:

  • post-MyGet.bat, post-MyGet.cmd or post-MyGet.ps1
  • post-build.bat, post-build.cmd or post-build.ps1

Which packages are pushed to my feed?

By default, MyGet will push all PHP Composer packages generated during build to your feed, which will typically be just one as most PHP Composer packages have their own source control repository.

To override this default behaviour, a series of filters can be specified in the build configuration. When omitted, all packages generated during build will be pushed to your feed. When specified, only packages matching any of the specified filters or wildcards will be pushed to your feed.

Configure Packages to Push

Filters can be of different types:

  • Plain text, e.g. MyPackage to match a specific package id.
  • Containing a wildcard, e.g. MyPackage.* to match all package id's that start with MyPackage..
  • Starting with a negation, e.g. !MyPackage.* to explicitly exclude all package id's starting with Mypackage.*.

Filters are executed in order of precedence. If a negation comes first, packages matching the negation will be excluded, even if the next rule defines to include the package.

Source labeling (tagging)

When enabled in the build source configuration on MyGet, source code can be labeled with the build number. This can be done for successful builds only (recommended) as well as for failed builds.

The label originating from MyGet will always be named in the form vX.Y.Z, vX.Y.Z.P or v.X.Y.Z-pre. The description for the label will always be the label name (the version number), followed by "- MyGet Build Services".

Note that for labeling sources, you must provide credentials that can commit to the originating source repository. If omitted, labeling will fail.

The labeling scheme is compatible with GitHub releases and can link a given PHP Composer package version number to a GitHub release.

Available Environment Variables

If you provide your own build.bat script or MyGet.sln, you can specifically instruct MyGet Build Services on how to act on your sources. This also means you'll need to take care of applying a version number to your build. That's why we provide you with the following set of parameters so you can benefit from using the version scheme you have already defined within the MyGet User Interface, as well as the build-counter attached to your build source.

Note: These environment variables are read-only and are reset to the initial values at the start of the build process.

Environment Variable Name Description
%BuildRunner% Always MyGet, can be used to determine if running on MyGet Build Services
%NuGet% Path to a maintained-by-MyGet NuGet.exe
%MsBuildExe% Path to msbuild.exe
%SourcesPath% Path to source code being built
%Configuration% Build configuration (defaults to Debug)
%Platform% Platform to build (defaults to blank)
%Targets% Build targets (defaults to Rebuild)
%VersionFormat% Version format specified in build configuration
%BuildCounter% Build counter value
%PrereleaseTag% The prerelease tag generated based on the VersionFormat and BuildCounter values
%PackageVersion% %VersionFormat% with %BuildCounter% filled in, used as the auto-generated package version number
%EnableNuGetPackageRestore% NuGet package restore enabled? Always true.
%GallioEcho% Path to the Gallio.Echo.exe test runner executable.
%XUnit192Path% Path to XUnit 1.9.2. xunit.console.clr4.exe, xunit.console.clr4.x86.exe, xunit.console.exe and xunit.console.x86.exe are located under this path.
%XUnit20Path% Path to XUnit 2.0. xunit.console.exe and xunit.console.x86.exe are located under this path.
%VsTestConsole% Path to VsTest.Console.exe

Git-based builds

For Git-based builds, the following environment variables are added:

Environment Variable Name Description
%GitPath% Path to git executable
%GitVersion% Path to gitversion executable (see GitVersion documentation)

User-defined environment variables

Sometimes you may want to pass in a value to the build scripts without hard-coding it into the build script. MyGet supports setting additional environment variables that can be used in custom build scripts as well as MSBuild. From the Build Source configuration, you can add user-defined environment variables that will be made available during build.

Environment variables

Environment variables can be used in your builds:

  • MSBuild: use the $(VARIABLE_KEY) syntax
  • Batch files: use the %VARIABLE_KEY% syntax
  • PowerShell: use the $env:VARIABLE_KEY syntax

Environment variables will be shown in the build log. If needed, environment variable values can be hidden in the build log using the open/closed eye button.

Environment variables in log

Service Messages

It is possible for a build to interact with MyGet Build Services using Service Messages. For example writing a message to the build log, setting the package version or triggering a build failure.

Service messages are strings that have a specific format that MyGet recognizes and can parse. Being strings, they can be written using an echo or the MSBuild Message task. The format of a service message can be:

  • ##myget[messageName 'value'], passing a single value to the build
  • ##myget[messageName key='value' key='value'], passing multiple values to the build

Special characters (like \r, \n, ', [ and ]) should be prefixed with a |.

Note: MyGet Build Services also parses TeamCity service messages. This means all tools that use TeamCity-specific service messages for communication with the build process will also work with MyGet Build Services.

Overriding the Package Version

The %PackageVersion% environment variable can be changed by using the buildNumber service message, for example:

##myget[buildNumber '1.0.0-beta1']

Note that this should be done in a pre-build step, as the environment variable is not updated in the running script (this could be done by just setting the environment variable manually).

Explicitly publishing a package

Packages can be published explicitly to a MyGet feed by using the publishPackage service message, for example:

##myget[publishPackage path='<relative-path-no-wildcards>' type='nuget|symbols|npm|bower|vsix|phpc']

This service message requires the relative path to the package (from the root of the source control repository). Wildcards are not supported: each artifact that needs to be published has to be enumerated.

Note that MyGet Build Services also applies package filters when the publishPackage service message is used. If a filter excludes a given package, the package will not be published to the MyGet feed.

Writing messages to the build log

Messages can be written to the build log using the message service message, for example:

##myget[message text='Text to write' errorDetails='stack trace' status='ERROR']

The errorDetails are not required. The status defaults to NORMAL and can be set to NORMAL, WARNING, FAILURE or ERROR.

Setting environment variables for a future process

The setParameter service message allows setting an environment variable that can be used by a future process. For example, in a pre-build step an environment variable can be set for the actual build script that runs later. The setParameter service message has the following format:

##myget[setParameter name='Name' value='Value']

Note that this should be done in a pre-build step, as the environment variable is not updated in the running script (this could be done by just setting the environment variable manually).

Reporting build failure

Using the buildProblem service message, a build failure can be triggered. This will stop the build at the exact position the message was written to output. For example:

##myget[buildProblem description='Build failed because of this error']

Build Status Badges

You can embed a status image for a build into any web page out there, including your project’s README file or documentation. Your users will be immediately updated about the status of the last build performed. Here’s an example badge for a successful build:

Successful Build

Badges will be shown for pending builds (queued or building) as well as successful and failed builds. The URL for a build badge can be obtained through the Build Services configuration:

Where to get the URL

It can then be used in HTML, for example with a hyperlink to your feed on the MyGet Gallery:

<a href="https://www.myget.org/gallery/googleanalyticstracker"><img alt="GoogleAnalyticsTracker Nightly Build Status" src="https://www.myget.org/BuildSource/Badge/googleanalyticstracker?identifier=479ff619-28f2-47c0-9574-2774ed0cd855" /></a>

You can do the same in Markdown:

[![GoogleAnalyticsTracker Nightly Build Status](https://www.myget.org/BuildSource/Badge/googleanalyticstracker?identifier=479ff619-28f2-47c0-9574-2774ed0cd855)](https://www.myget.org/gallery/googleanalyticstracker)

Of course, you can also use it in any other markup language that supports embedding images.

GitHub Status API

When a build source is linked to a GitHub repository and has credentials specified, MyGet Build Services will make use of the GitHub Commit Status API to report status messages about a build back to GitHub and making them visible with commits and pull requests on GitHub. The status message posted to GitHub reflects the build status and links to the build log on MyGet.

GitHub Commit Status

To enable GitHub Commit Status messages on your builds, make sure the build configuration has credentials specified. Specifying credentials can be done by removing and adding the build configuration again, a method which doesn't require you to enter your password. You can also specify credentials manually by editing the build source.

Found an issue with the documentation on this page? We accept contributions!
Read our contribution guidance or edit this page's source on GitHub.