Skip to content

Commit

Permalink
build scripts cleanup
Browse files Browse the repository at this point in the history
renamed run.ps1 -> run.cake, build.ps1 -> build.cake
  • Loading branch information
arturcic committed Oct 12, 2018
1 parent c11aa8a commit e715eb5
Show file tree
Hide file tree
Showing 11 changed files with 647 additions and 1,862 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ before_install:
- git fetch origin
- bash <(wget -O - https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/install-powershell.sh)
script:
- pwsh ./run.ps1 -script run.cake -target Default
- pwsh ./build.ps1 -script build.cake -target Default
env:
global:
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
Expand Down
20 changes: 0 additions & 20 deletions appveyor.deploy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ install:
- set PATH=C:\Ruby25-x64\bin;%PATH%

build_script:
- pwsh: ./run.ps1 -script run.cake -target Default
- pwsh: ./build.ps1 -script build.cake -target Default

test: off
skip_tags: true
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
displayName: 'Use .NET Core sdk 2.1.401'
inputs:
version: 2.1.401
- powershell: ./run.ps1 -script run.cake -target Default
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'
- job: Linux
pool:
Expand All @@ -20,7 +20,7 @@ jobs:
- task: UseRubyVersion@0
inputs:
addToPath: true # Optional
- powershell: ./run.ps1 -script run.cake -target Default
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'
- job: Windows
pool:
Expand All @@ -33,5 +33,5 @@ jobs:
- task: UseRubyVersion@0
inputs:
addToPath: true # Optional
- powershell: ./run.ps1 -script run.cake -target Default
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'
Loading

0 comments on commit e715eb5

Please sign in to comment.