Skip to content

Commit e715eb5

Browse files
committed
build scripts cleanup
renamed run.ps1 -> run.cake, build.ps1 -> build.cake
1 parent c11aa8a commit e715eb5

File tree

11 files changed

+647
-1862
lines changed

11 files changed

+647
-1862
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ before_install:
1313
- git fetch origin
1414
- bash <(wget -O - https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/install-powershell.sh)
1515
script:
16-
- pwsh ./run.ps1 -script run.cake -target Default
16+
- pwsh ./build.ps1 -script build.cake -target Default
1717
env:
1818
global:
1919
- DOTNET_CLI_TELEMETRY_OPTOUT: 1

appveyor.deploy.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ install:
99
- set PATH=C:\Ruby25-x64\bin;%PATH%
1010

1111
build_script:
12-
- pwsh: ./run.ps1 -script run.cake -target Default
12+
- pwsh: ./build.ps1 -script build.cake -target Default
1313

1414
test: off
1515
skip_tags: true

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
displayName: 'Use .NET Core sdk 2.1.401'
88
inputs:
99
version: 2.1.401
10-
- powershell: ./run.ps1 -script run.cake -target Default
10+
- powershell: ./build.ps1 -script build.cake -target Default
1111
displayName: 'Cake build'
1212
- job: Linux
1313
pool:
@@ -20,7 +20,7 @@ jobs:
2020
- task: UseRubyVersion@0
2121
inputs:
2222
addToPath: true # Optional
23-
- powershell: ./run.ps1 -script run.cake -target Default
23+
- powershell: ./build.ps1 -script build.cake -target Default
2424
displayName: 'Cake build'
2525
- job: Windows
2626
pool:
@@ -33,5 +33,5 @@ jobs:
3333
- task: UseRubyVersion@0
3434
inputs:
3535
addToPath: true # Optional
36-
- powershell: ./run.ps1 -script run.cake -target Default
36+
- powershell: ./build.ps1 -script build.cake -target Default
3737
displayName: 'Cake build'

0 commit comments

Comments
 (0)