SendTo automatic rename filename (#1620)
[gpodder.git] / .appveyor.yml
blob71d0a73593f4a7288b996066560506b55a94eb6c
1 branches:
2   only:
3     - master
4     - /win.*/
6 # Start builds on tags only
7 # skip_non_tags: true
9 image:
10   - Visual Studio 2019
12 environment:
13   matrix:
14     - MSYS2_ARCH: i686
15       MSYSTEM: MINGW32
17 build_script:
18   - set
19   - set PATH=C:\msys64\%MSYSTEM%\bin;C:\msys64\usr\bin;%PATH%
20   - set CHERE_INVOKING=yes
21   # workaround updating msys2-runtime breaks all programs until last one exited
22   - bash -lc "pacman -Syuu --noconfirm"
23   - Powershell.exe "Stop-Process -name dirmngr -Erroraction silentlycontinue; echo killing_dirmng"
24   - Powershell.exe "Stop-Process -name gpg-agent -Erroraction silentlycontinue; echo killing_gpg-agent"
25   - bash -lc "pacman -Syuu --noconfirm"
26   - Powershell.exe "Stop-Process -name dirmngr -Erroraction silentlycontinue; echo killing_dirmng"
27   - Powershell.exe "Stop-Process -name gpg-agent -Erroraction silentlycontinue; echo killing_gpg-agent"
28   # finally run the install process
29   - bash -lc "bash .appveyor/msys2.sh"
31 artifacts:
32   - path: tools/win_installer/gpodder-*-contents.txt
33   - path: tools/win_installer/gpodder-*-installer.exe
34   - path: tools/win_installer/gpodder-*-portable.exe
36 deploy: off
38 on_failure:
39   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))