welsonjs/.appveyor.yml

47 lines
1.6 KiB
YAML
Raw Normal View History

2024-08-06 11:13:10 +00:00
version: 0.2.7.build{build}
2024-08-06 11:08:17 +00:00
image: Visual Studio 2019
clone_folder: C:\projects\welsonjs
environment:
2024-08-23 02:42:46 +00:00
ORGANIZATION_ID: 8ee5ec82-36dc-4619-ac33-5bc1117428fe
PROJECT_SLUG: welsonjs
ARTIFACT_CONFIGURATION_SLUG: initial
2024-08-06 11:08:17 +00:00
matrix:
2024-08-06 11:12:19 +00:00
- CONFIGURATION: Debug
2024-08-23 02:54:35 +00:00
SIGNING_POLICY_SLUG: test-signing
2024-08-06 11:12:19 +00:00
- CONFIGURATION: Release
2024-09-23 13:21:15 +00:00
SIGNING_POLICY_SLUG: release-signing
2024-08-06 11:08:17 +00:00
2024-08-12 04:02:11 +00:00
before_build:
2024-08-12 04:03:52 +00:00
- nuget restore WelsonJS.Toolkit
2024-08-12 04:02:11 +00:00
2024-08-06 11:08:17 +00:00
build_script:
2024-08-06 11:12:19 +00:00
- msbuild "C:\projects\welsonjs\WelsonJS.Toolkit\WelsonJS.Toolkit.sln" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=%CONFIGURATION% /p:Platform="x86"
2024-08-23 03:06:37 +00:00
after_build:
2024-08-23 03:17:35 +00:00
- cmd: mkdir artifacts
2024-08-23 03:21:37 +00:00
#- cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x86\%CONFIGURATION%\* artifacts\
2024-08-23 03:17:35 +00:00
- 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: 7z a artifacts.zip artifacts\*
2024-08-23 03:06:37 +00:00
2024-08-06 11:08:17 +00:00
artifacts:
2024-08-23 03:17:35 +00:00
- path: artifacts.zip
2024-08-15 08:47:29 +00:00
name: WelsonJS.Toolkit
2024-08-06 11:08:17 +00:00
2024-08-23 02:33:17 +00:00
deploy:
- provider: Webhook
2024-08-23 02:44:37 +00:00
url: https://app.signpath.io/API/v1/%ORGANIZATION_ID%/Integrations/AppVeyor?ProjectSlug=%PROJECT_SLUG%&SigningPolicySlug=%SIGNING_POLICY_SLUG%&ArtifactConfigurationSlug=%ARTIFACT_CONFIGURATION_SLUG%
2024-08-23 02:33:17 +00:00
authorization:
2024-08-23 02:48:13 +00:00
secure: nABfe+lksIRfS7lVnkq3EdIYNH8KOka+5ZFTUJqUW2nckBubhrlAXarbCPJHLp9FWWf3zxAWhNwT0It+qyqPRQ==
2024-08-22 01:26:11 +00:00
2024-08-06 11:08:17 +00:00
notifications:
- provider: Email
to:
- abuse@catswords.net
2024-08-22 01:26:11 +00:00
subject: 'Build #{{build}} {{status}}'
2024-08-12 04:12:50 +00:00
on_build_success: false
2024-08-21 19:02:31 +00:00
on_build_failure: true