Remove non-4.8 from AppVeyor artifacts

This commit is contained in:
Matt Nadareski
2021-09-27 20:59:56 -07:00
parent 227c61b588
commit 8151db9696
2 changed files with 26 additions and 12 deletions

View File

@@ -8,6 +8,8 @@
- Update support packages
- Add on-startup "check for updates" option
- Update to Aaru v5.3.0-rc2
- Add .NET 5.0 as build target
- Remove .NET Core 3.1 and .NET 5.0 from AppVeyor build artifacts
### 2.1 (2021-07-22)
- Enum, no more

View File

@@ -41,28 +41,36 @@ after_build:
- ps: appveyor DownloadFile https://archive.org/download/subdump_fua_0x28/subdump_fua_0x28.zip
- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\net48\Programs\Aaru *
- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Aaru *
#- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Aaru *
#- 7z x aaru-5.3.0-rc2_windows_x64.zip -oMPF\bin\Debug\net5.0\Programs\Aaru *
- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net48\Programs\DD *
- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\DD *
#- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\DD *
#- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net5.0\Programs\DD *
- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\net48\Programs\Creator Release_ANSI\*
- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Creator Release_ANSI\*
#- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Creator Release_ANSI\*
#- 7z e DiscImageCreator_20210701.zip -oMPF\bin\Debug\net5.0\Programs\Creator Release_ANSI\*
- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net48 *
- mkdir MPF\bin\Debug\net48\Programs\Subdump
- mv MPF\bin\Debug\net48\subdump_fua_0x28.exe MPF\bin\Debug\net48\Programs\Subdump\subdump.exe
- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\netcoreapp3.1 *
- mkdir MPF\bin\Debug\netcoreapp3.1\Programs\Subdump
- mv MPF\bin\Debug\netcoreapp3.1\subdump_fua_0x28.exe MPF\bin\Debug\netcoreapp3.1\Programs\Subdump\subdump.exe
#- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\netcoreapp3.1 *
#- mkdir MPF\bin\Debug\netcoreapp3.1\Programs\Subdump
#- mv MPF\bin\Debug\netcoreapp3.1\subdump_fua_0x28.exe MPF\bin\Debug\netcoreapp3.1\Programs\Subdump\subdump.exe
#- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net5.0 *
#- mkdir MPF\bin\Debug\net5.0\Programs\Subdump
#- mv MPF\bin\Debug\net5.0\subdump_fua_0x28.exe MPF\bin\Debug\net5.0\Programs\Subdump\subdump.exe
- cd MPF\bin\Debug
- 7z a MPF_net48.zip net48\*
- 7z a MPF_netcoreapp3.1.zip netcoreapp3.1\*
#- 7z a MPF_netcoreapp3.1.zip netcoreapp3.1\*
#- 7z a MPF_net5.0.zip net5.0\*
- cd ..\..\..\MPF.Check\bin\Debug
- 7z a MPF-Check_net48.zip net48\*
- 7z a MPF-Check_netcoreapp3.1.zip netcoreapp3.1\*
#- 7z a MPF-Check_netcoreapp3.1.zip netcoreapp3.1\*
#- 7z a MPF-Check_net5.0.zip net5.0\*
# success/failure tracking
on_success:
@@ -76,10 +84,14 @@ on_failure:
artifacts:
- path: MPF\bin\Debug\MPF_net48.zip
name: MPF (WPF UI) (.NET Framework 4.8)
- path: MPF\bin\Debug\MPF_netcoreapp3.1.zip
name: MPF (WPF UI) (.NET Core 3.1)
#- path: MPF\bin\Debug\MPF_netcoreapp3.1.zip
# name: MPF (WPF UI) (.NET Core 3.1)
#- path: MPF\bin\Debug\MPF_net5.0.zip
# name: MPF (WPF UI) (.NET 5.0)
- path: MPF.Check\bin\Debug\MPF-Check_net48.zip
name: MPF Check (.NET Framework 4.8)
- path: MPF.Check\bin\Debug\MPF-Check_netcoreapp3.1.zip
name: MPF Check (.NET Core 3.1)
#- path: MPF.Check\bin\Debug\MPF-Check_netcoreapp3.1.zip
# name: MPF Check (.NET Core 3.1)
#- path: MPF.Check\bin\Debug\MPF-Check_net5.0.zip
# name: MPF Check (.NET 5.0)