Skip to content

Commit

Permalink
Added additional build targets: win10-arm, win10-arm64, linux-x64, li…
Browse files Browse the repository at this point in the history
…nux-arm, ubuntu.18.04
  • Loading branch information
morrisonbrett committed Nov 16, 2018
1 parent 3da0f6e commit 8faf58d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Build.ps1
Expand Up @@ -71,11 +71,26 @@ exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\win7-x64
exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\win7-x86 -f netcoreapp2.1 -r win7-x86 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\win7-x86 -f netcoreapp2.1 -r win7-x86 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\win10-arm -f netcoreapp2.1 -r win10-arm --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\win10-arm -f netcoreapp2.1 -r win10-arm --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\win10-arm64 -f netcoreapp2.1 -r win10-arm64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\win10-arm64 -f netcoreapp2.1 -r win10-arm64 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\osx.10.10-x64 -f netcoreapp2.1 -r osx.10.10-x64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\osx.10.10-x64 -f netcoreapp2.1 -r osx.10.10-x64 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\linux-x64 -f netcoreapp2.1 -r linux-x64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\linux-x64 -f netcoreapp2.1 -r linux-x64 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\linux-arm -f netcoreapp2.1 -r linux-arm --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\linux-arm -f netcoreapp2.1 -r linux-arm --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.14.04-x64 -f netcoreapp2.1 -r ubuntu.14.04-x64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.14.04-x64 -f netcoreapp2.1 -r ubuntu.14.04-x64 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.16.04-x64 -f netcoreapp2.1 -r ubuntu.16.04-x64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.16.04-x64 -f netcoreapp2.1 -r ubuntu.16.04-x64 --version-suffix=$revision }

exec { & dotnet build .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.18.04-x64 -f netcoreapp2.1 -r ubuntu.18.04-x64 --version-suffix=$revision }
exec { & dotnet publish .\BlackVueDownloader -c Release -o .\artifacts\ubuntu.18.04-x64 -f netcoreapp2.1 -r ubuntu.18.04-x64 --version-suffix=$revision }

0 comments on commit 8faf58d

Please sign in to comment.