From 83a037dfa21f87185708602d050455fdb108c88a Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 27 Sep 2025 22:52:13 +0900 Subject: [PATCH] Download setup and ChakraCore in AppVeyor build Added PowerShell steps to download the unsigned setup executable and ChakraCore.dll into the artifacts directory during the AppVeyor after_build phase. --- .appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index fab198a..aac253a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,6 +26,8 @@ after_build: - cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Service\bin\x86\%CONFIGURATION%\* artifacts\ - cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Launcher\bin\x86\%CONFIGURATION%\* artifacts\ - cmd: nuget pack WelsonJS.Toolkit\WelsonJS.Toolkit\ -properties Configuration=%CONFIGURATION% -properties Platform=x86 -OutputDirectory artifacts\ + - ps: Start-BitsTransfer -Source "https://catswords.blob.core.windows.net/welsonjs/welsonjs_setup_unsigned.exe" -Destination "artifacts\welsonjs_setup.exe" + - ps: Start-BitsTransfer -Source "https://catswords.blob.core.windows.net/welsonjs/chakracore-build/x86_release/ChakraCore.dll" -Destination "artifacts\ChakraCore.dll" - cmd: 7z a artifacts.zip artifacts\* artifacts: @@ -44,4 +46,4 @@ notifications: - gnh1201@catswords.re.kr subject: "Build {{status}}: {{projectName}} {{buildVersion}}" on_build_success: false - on_build_failure: true + on_build_failure: true \ No newline at end of file