Warning, /office/skrooge/appveyor.yml is written in an unsupported language. File is not indexed.

0001 version: '{build}-{branch}'
0002 
0003 branches:
0004   # whitelist
0005   only:
0006     - master
0007 
0008 clone_depth: 50
0009 
0010 
0011 init:
0012 - ps: |
0013     function craft() {
0014         & "C:\python36\python.exe" "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args
0015         if($LASTEXITCODE -ne 0) {exit $LASTEXITCODE}
0016     }
0017 
0018 install:
0019 - ps: |
0020     #use cmd to silence powershell behaviour for stderr
0021     & cmd /C "git clone -q --depth=1 git://anongit.kde.org/craftmaster.git C:\CraftMaster\CraftMaster 2>&1"
0022     craft craft
0023     craft --install-deps skrooge
0024 
0025 build_script:
0026 - ps: |
0027     craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER skrooge
0028 
0029 after_build:
0030 - ps: |
0031     if ($env:TARGET -eq "windows-msvc2017_64-cl") {
0032         craft --add-blueprint-repository [git]https://cgit.kde.org/craft-blueprints-kde.git
0033         craft --no-cache skrooge-binary-probes
0034         craft nsis
0035     }
0036     craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER --package skrooge
0037 
0038 #test_script:
0039 #- ps: |
0040    #craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER --test skrooge
0041 test: off
0042 
0043 environment:
0044     matrix:
0045     - TARGET: windows-msvc2015_32-cl
0046     - TARGET: windows-mingw_32-gcc
0047     - TARGET: windows-msvc2017_64-cl
0048       APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
0049 
0050 artifacts:
0051   - path: cache\**\.*
0052   - path: binaries\*
0053 
0054 deploy:
0055     - provider: Environment
0056       name: Skrooge