Skip to content

Commit

Permalink
project: prevent appveyor from building in parallel.
Browse files Browse the repository at this point in the history
Due to both static and shared configs using the same 10b/12b static
configs there can be issues with both trying to build one of the 10b/12b
projects at the same time.
  • Loading branch information
Sibras committed Apr 3, 2017
1 parent 24c2e2a commit 0ce9c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SMP/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ before_build:
</ItemGroup>
</Target>
<Target Name="Build" DependsOnTargets="List">
<MSBuild Projects="@(ProjectToBuild)" BuildInParallel="true" />
<MSBuild Projects="@(ProjectToBuild)" BuildInParallel="false" />
</Target>
<Target Name="GitLink" DependsOnTargets="Build" Outputs="%(PlatformList.Identity)">
<PropertyGroup>
Expand Down

0 comments on commit 0ce9c75

Please sign in to comment.