ArchiSteamFarm/appveyor.yml

154 lines
7 KiB
YAML
Raw Normal View History

2017-02-23 17:50:57 +00:00
version: '{build}-{branch}'
2017-02-12 14:15:20 +00:00
pull_requests:
do_not_increment_build_number: true
2017-02-20 14:37:38 +00:00
branches:
only:
- master
2017-01-16 02:03:19 +00:00
skip_branch_with_pr: true
2017-09-03 17:54:49 +00:00
image: Visual Studio 2017
2016-04-20 23:09:52 +00:00
configuration: Release
platform: Any CPU
clone_depth: 10
2017-06-30 01:54:48 +00:00
environment:
2017-09-03 18:41:59 +00:00
DOTNET_CHANNEL: 2.0
2017-06-30 01:54:48 +00:00
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
RUNTIMES: generic win-x64 linux-x64 linux-arm osx-x64
matrix:
fast_finish: true
install:
- ps: >-
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
2017-10-15 09:45:05 +00:00
$ErrorActionPreference = 'Stop'
2017-10-15 09:45:05 +00:00
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
2017-08-26 00:51:06 +00:00
dotnet --info
$env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
New-Item '.\scripts\obtain' -ItemType 'directory' -Force
Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1' -OutFile '.\scripts\obtain\dotnet-install.ps1'
2017-09-03 17:54:49 +00:00
.\scripts\obtain\dotnet-install.ps1 -Channel "$env:DOTNET_CHANNEL" -InstallDir "$env:DOTNET_INSTALL_DIR"
2017-06-27 16:36:40 +00:00
before_build:
- ps: >-
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
2017-10-15 09:45:05 +00:00
$ErrorActionPreference = 'Stop'
2017-10-15 09:45:05 +00:00
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
dotnet --info
nuget sources update -Name nuget.org -Source https://api.nuget.org/v3/index.json
dotnet restore
build_script:
- ps: >-
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
2017-10-15 09:45:05 +00:00
$ErrorActionPreference = 'Stop'
2017-10-15 09:45:05 +00:00
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
2017-08-24 18:13:03 +00:00
dotnet build -c "$env:CONFIGURATION" -o 'out\source' --no-restore /nologo
test_script:
- ps: >-
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
2017-10-15 09:45:05 +00:00
$ErrorActionPreference = 'Stop'
2017-10-15 09:45:05 +00:00
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
dotnet test ArchiSteamFarm.Tests -c "$env:CONFIGURATION" -o 'out\source' --no-build --no-restore
2017-07-10 06:33:38 +00:00
after_test:
2017-06-30 04:18:03 +00:00
- ps: >-
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
2017-10-15 09:45:05 +00:00
2017-06-30 05:54:18 +00:00
$ErrorActionPreference = 'Stop'
2017-10-15 09:45:05 +00:00
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
2017-06-30 02:07:28 +00:00
$PublishBlock = {
param($RUNTIME)
2017-07-05 01:35:09 +00:00
2017-10-15 09:04:25 +00:00
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
2017-10-15 09:04:25 +00:00
$ProgressPreference = 'SilentlyContinue'
2017-06-30 02:43:39 +00:00
Set-Location -Path "$env:APPVEYOR_BUILD_FOLDER"
2017-07-05 01:35:09 +00:00
if ($RUNTIME -eq 'generic') {
dotnet publish ArchiSteamFarm -c "$env:CONFIGURATION" -o "out\$RUNTIME" --no-restore /nologo
} else {
2017-08-24 18:13:03 +00:00
dotnet publish ArchiSteamFarm -c "$env:CONFIGURATION" -o "out\$RUNTIME" -r "$RUNTIME" --no-restore /nologo
}
2017-06-30 05:54:18 +00:00
2017-09-27 00:58:57 +00:00
# Update ArchiSteamFarm.version from "source" variant into the one we've just built
Set-Content -Path "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.version" -Value "$RUNTIME"
2017-07-01 02:06:33 +00:00
2017-09-27 00:58:57 +00:00
# If we include any helper scripts for this variant, copy them to output directory
2017-09-23 02:43:27 +00:00
if (Test-Path -Path "ArchiSteamFarm\scripts\$RUNTIME" -PathType Container) {
2017-09-23 02:55:02 +00:00
Copy-Item "ArchiSteamFarm\scripts\$RUNTIME\*" -Destination "ArchiSteamFarm\out\$RUNTIME"
2017-09-23 02:43:27 +00:00
}
2017-09-27 00:58:57 +00:00
# Until https://github.com/dotnet/cli/issues/3267 happens, we'll hack dotnet binary icon on Windows and include .ico file on other platforms
if (Test-Path -Path "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.exe" -PathType Leaf) {
tools\rcedit\rcedit-x64.exe "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.exe" --set-icon 'resources\ASF.ico'
2017-09-27 01:03:38 +00:00
} else {
2017-09-27 00:58:57 +00:00
Copy-Item 'resources\ASF.ico' -Destination "ArchiSteamFarm\out\$RUNTIME\ArchiSteamFarm.ico"
}
2017-09-26 04:30:20 +00:00
if ($env:APPVEYOR_REPO_TAG -eq 'true') {
2017-09-28 03:07:23 +00:00
# Update link in Changelog.html accordingly
if (Test-Path -Path "ArchiSteamFarm\out\$RUNTIME\Changelog.html" -PathType Leaf) {
(Get-Content -Path "ArchiSteamFarm\out\$RUNTIME\Changelog.html").Replace('ArchiSteamFarm/commits/master', "ArchiSteamFarm/releases/tag/$env:APPVEYOR_REPO_TAG_NAME") | Set-Content -Path "ArchiSteamFarm\out\$RUNTIME\Changelog.html"
}
2017-09-26 04:59:13 +00:00
$ZIP_ARGS = '-mx=9', '-mfb=257', '-mpass=15'
2017-09-26 05:52:43 +00:00
} else {
$ZIP_ARGS = '-mx=1'
2017-09-26 04:30:20 +00:00
}
7z a -bd -tzip -mm=Deflate64 $ZIP_ARGS "ArchiSteamFarm\out\ASF-$RUNTIME.zip" "$env:APPVEYOR_BUILD_FOLDER\ArchiSteamFarm\out\$RUNTIME\*"
Push-AppveyorArtifact "ArchiSteamFarm\out\ASF-$RUNTIME.zip" -FileName "ASF-$RUNTIME.zip" -DeploymentName "ASF-$RUNTIME.zip"
2017-06-30 04:18:03 +00:00
}
foreach ($RUNTIME in $env:RUNTIMES.Split([char[]] $null, [System.StringSplitOptions]::RemoveEmptyEntries)) {
Start-Job -Name "$RUNTIME" -ScriptBlock $PublishBlock -ArgumentList "$RUNTIME"
}
Get-Job | Receive-Job -AutoRemoveJob -Wait
2017-06-30 01:54:48 +00:00
deploy:
- provider: GitHub
tag: $(appveyor_repo_tag_name)
2017-07-05 06:00:30 +00:00
release: ArchiSteamFarm V$(appveyor_repo_tag_name)
2017-09-13 03:04:20 +00:00
description: '**NOTICE: Pre-releases are experimental versions that often contain unpatched bugs, work-in-progress features or rewritten implementations. If you don''t consider yourself advanced user, please download **[latest stable release](https://github.com/JustArchi/ArchiSteamFarm/releases/latest)** instead. Pre-release versions are dedicated to users who know how to report bugs, deal with issues and give feedback - no technical support will be given. Check out ASF **[release cycle](https://github.com/JustArchi/ArchiSteamFarm/wiki/Release-cycle)** if you''d like to learn more.**\n\n---\n\nThis is automated AppVeyor GitHub deployment, human-readable changelog should be available soon. In the meantime please refer to **[GitHub commits](https://github.com/JustArchi/ArchiSteamFarm/commits/$(appveyor_repo_tag_name))**.\n\n---\n\nASF is available for free. If you''re grateful for what we''re doing, please consider donating. Developing ASF requires massive amount of time and knowledge, especially when it comes to Steam (and its problems). Even 1$ is highly appreciated and shows that you care!\n\n [![Patreon support](https://img.shields.io/badge/Patreon-support-yellow.svg)](https://www.patreon.com/JustArchi) [![Paypal.me donate](https://img.shields.io/badge/Paypal.me-donate-yellow.svg)](https://www.paypal.me/JustArchi/1usd) [![Paypal donate](https://img.shields.io/badge/Paypal-donate-yellow.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=HD2P2P3WGS5Y4) [![Bitcoin donate](https://img.shields.io/badge/Bitcoin-donate-yellow.svg)](https://blockchain.info/payment_request?address=1Archi6M1r5b41Rvn1SY2FfJAzsrEUT7aT) [![Steam donate](https://img.shields.io/badge/Steam-donate-yellow.svg)](https://steamcommunity.com/tradeoffer/new/?partner=46697991&token=0ix2Ruv_)'
2017-06-30 01:54:48 +00:00
auth_token:
secure: QC5gIDMvSpd43EG6qW8d1E3ZHiVU4aR7pbKQonXstjj/JtAABf5S1IbtoY4OsnOR
artifact: /.*/
2017-07-05 03:49:23 +00:00
draft: false
2017-06-30 01:54:48 +00:00
prerelease: true
force_update: false
on:
branch: master
configuration: Release
2017-07-15 02:45:44 +00:00
appveyor_repo_tag: true
notifications:
- provider: Webhook
url:
2017-07-15 03:21:25 +00:00
secure: i/og7KzkpbcWcKoUubrLH+KB6bkfqA55FHUlGxLepLmgZNQeNMiMoAFICOFY795fFrFfUNUKqwk7ApXE6HUyWMoiijLj7G/JBLTPkBiTCu8fZMTMqwQm6FiHB3+/0h0C+ukcrBEqnXYSQUh6znpKqJSTrIfXUQ7ftNuC966kBAw=
2017-07-15 02:45:44 +00:00
method: POST
body: >-
{
"avatar_url": "https://www.appveyor.com/assets/img/appveyor-logo-256.png",
"username": "AppVeyor",
"content": "[{{projectName}}:{{branch}}] {{commitMessage}} - {{committerName}} ({{commitId}}) | {{buildUrl}}/artifacts | **{{status}}**"
2017-07-15 02:45:44 +00:00
}
on_build_success: true
on_build_failure: true
on_build_status_changed: false