From 481f4b41d1afd7a0c436c8f95d8452a58ca562d7 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 26 Sep 2023 23:44:06 -0400 Subject: [PATCH] Fully sync AppVeyor build with script --- CHANGELIST.md | 1 + appveyor.yml | 60 +++++++++++++++++++++++++-------------------------- 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 03816334..70b75fe5 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -4,6 +4,7 @@ - Update to MMI 3.0.0-preview.2 - Remove errant character from script - Add placeholders for release builds +- Fully sync AppVeyor build with script ### 2.6.5 (2023-09-27) diff --git a/appveyor.yml b/appveyor.yml index 0ec49e68..837cfeb5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -109,11 +109,11 @@ after_build: # Create MPF Debug archives - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net48\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_net48.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF-dbg_net48.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net6.0-windows\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_net6.0_win-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF-dbg_net6.0_win-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Debug\net7.0-windows\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF_net7.0_win-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF-dbg_net7.0_win-x64.zip * # # Create MPF Release archives # - cd %APPVEYOR_BUILD_FOLDER%\MPF\bin\Release\net48\publish\ @@ -125,19 +125,19 @@ after_build: # Create MPF.Check Debug archives - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net48\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net48.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net48.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net6.0_win-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net6.0_win-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\linux-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net6.0_linux-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net6.0_linux-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net6.0\osx-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net6.0_osx-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net6.0_osx-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\win-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net7.0_win-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net7.0_win-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\linux-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net7.0_linux-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net7.0_linux-x64.zip * - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Debug\net7.0\osx-x64\publish\ -- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check_net7.0_osx-x64.zip * +- 7z a -tzip %APPVEYOR_BUILD_FOLDER%\MPF.Check-dbg_net7.0_osx-x64.zip * # # Create MPF.Check Release archives # - cd %APPVEYOR_BUILD_FOLDER%\MPF.Check\bin\Release\net48\publish\ @@ -165,12 +165,12 @@ on_failure: # artifact linking artifacts: -- path: MPF_net48.zip - name: MPF (.NET Framework 4.8) -- path: MPF_net6.0_win-x64.zip - name: MPF (.NET 6.0, Windows x64) -- path: MPF_net7.0_win-x64.zip - name: MPF (.NET 7.0, Windows x64) +- path: MPF-dbg_net48.zip + name: MPF (.NET Framework 4.8, Debug) +- path: MPF-dbg_net6.0_win-x64.zip + name: MPF (.NET 6.0, Debug, Windows x64) +- path: MPF-dbg_net7.0_win-x64.zip + name: MPF (.NET 7.0, Debug, Windows x64) # - path: MPF_net48.zip # name: MPF (.NET Framework 4.8, Release) @@ -179,20 +179,20 @@ artifacts: # - path: MPF_net7.0_win-x64.zip # name: MPF (.NET 7.0, Release, Windows x64) -- path: MPF.Check_net48.zip - name: MPF Check (.NET Framework 4.8) -- path: MPF.Check_net6.0_win-x64.zip - name: MPF.Check (.NET 6.0, Windows x64) -- path: MPF.Check_net6.0_linux-x64.zip - name: MPF.Check (.NET 6.0, Linux x64) -- path: MPF.Check_net6.0_osx-x64.zip - name: MPF.Check (.NET 6.0, OSX x64) -- path: MPF.Check_net7.0_win-x64.zip - name: MPF.Check (.NET 7.0, Windows x64) -- path: MPF.Check_net7.0_linux-x64.zip - name: MPF.Check (.NET 7.0, Linux x64) -- path: MPF.Check_net7.0_osx-x64.zip - name: MPF.Check (.NET 7.0, OSX x64) +- path: MPF.Check-dbg_net48.zip + name: MPF Check (.NET Framework 4.8, Debug) +- path: MPF.Check-dbg_net6.0_win-x64.zip + name: MPF.Check (.NET 6.0, Debug, Windows x64) +- path: MPF.Check-dbg_net6.0_linux-x64.zip + name: MPF.Check (.NET 6.0, Debug, Linux x64) +- path: MPF.Check-dbg_net6.0_osx-x64.zip + name: MPF.Check (.NET 6.0, Debug, OSX x64) +- path: MPF.Check-dbg_net7.0_win-x64.zip + name: MPF.Check (.NET 7.0, Debug, Windows x64) +- path: MPF.Check-dbg_net7.0_linux-x64.zip + name: MPF.Check (.NET 7.0, Debug, Linux x64) +- path: MPF.Check-dbg_net7.0_osx-x64.zip + name: MPF.Check (.NET 7.0, Debug, OSX x64) # - path: MPF.Check_net48.zip # name: MPF Check (.NET Framework 4.8, Release)