File tree 1 file changed +1
-14
lines changed
1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Environment.SetVariableNames();
5
5
6
- var platform = PlatformFamily.Linux;
7
- var provider = BuildProviderType.GitHubActions;
8
-
9
- // Because GitVersion do not play nice with GitHub Action, we need to do the publishing
10
- // on appveyor instead
11
- if (HasEnvironmentVariable("APPVEYOR") && EnvironmentVariable("APPVEYOR_REPO_TAG", false))
12
- {
13
- platform = PlatformFamily.Windows;
14
- provider = BuildProviderType.AppVeyor;
15
- }
16
-
17
6
BuildParameters.SetParameters(
18
7
context: Context,
19
8
buildSystem: BuildSystem,
@@ -28,9 +17,7 @@ BuildParameters.SetParameters(
28
17
shouldRunCodecov : true,
29
18
shouldRunCoveralls : false,
30
19
shouldUseDeterministicBuilds : true,
31
- shouldUseTargetFrameworkPath : false,
32
- preferredBuildAgentOperatingSystem : platform,
33
- preferredBuildProviderType : provider) ;
20
+ shouldUseTargetFrameworkPath : false) ;
34
21
35
22
ToolSettings . SetToolSettings ( context : Context ) ;
36
23
You can’t perform that action at this time.
0 commit comments