2016-08-07 16:13:58 +02:00
|
|
|
environment:
|
|
|
|
matrix:
|
2018-02-11 23:45:16 +01:00
|
|
|
- MSYSTEM: MINGW32
|
2016-08-07 16:13:58 +02:00
|
|
|
|
2016-12-06 12:50:00 +01:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
|
|
|
clone_depth: 1
|
2016-08-07 16:13:58 +02:00
|
|
|
|
2017-05-10 17:16:14 +02:00
|
|
|
# init:
|
|
|
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
2016-12-28 18:06:39 +01:00
|
|
|
|
2018-02-11 23:45:16 +01:00
|
|
|
build_script:
|
|
|
|
- C:\msys64\usr\bin\pacman -Syuu --needed --noconfirm --ask=127
|
2017-05-10 17:16:14 +02:00
|
|
|
- ps: |
|
2018-01-25 18:36:12 +01:00
|
|
|
$env:TIME_STRING=(get-date -UFormat "%Y-%m-%d").ToString()
|
|
|
|
$env:BUILDROOT="C:\msys64\home\appveyor\gajim\win\_build_root"
|
|
|
|
|
|
|
|
function bash($command) {
|
|
|
|
Write-Host $command -NoNewline
|
|
|
|
C:\msys64\usr\bin\sh.exe --login -c $command
|
|
|
|
}
|
|
|
|
|
|
|
|
bash 'git clone C:/projects/gajim C:/msys64/home/appveyor/gajim'
|
|
|
|
bash 'C:/msys64/home/appveyor/gajim/win/build.sh'
|
|
|
|
Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-Master-$($env:TIME_STRING).exe"
|
|
|
|
Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-Master-$($env:TIME_STRING).exe"
|
2016-08-07 16:13:58 +02:00
|
|
|
|
2017-05-10 17:16:14 +02:00
|
|
|
# on_finish:
|
|
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
|
2016-12-09 23:53:28 +01:00
|
|
|
deploy:
|
|
|
|
# FTP deployment provider settings
|
|
|
|
- provider: FTP
|
|
|
|
protocol: ftp
|
|
|
|
host: panoramix.gajim.org
|
|
|
|
username:
|
|
|
|
secure: SNcOJDhUtBjfddbKXudE2w==
|
|
|
|
password:
|
|
|
|
secure: tQkYbcUb6nChCp0cdqo4CA==
|
|
|
|
folder: win_snap
|
|
|
|
active_mode: false
|
|
|
|
beta: true # enable alternative FTP library for 'ftp' and 'ftps' modes
|
|
|
|
debug: true
|