blob: 09a608a739e0f49c010b31e3c64eed1228c30369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
version: '{branch}-{build}'
clone_depth: 10
environment:
PACMAN_OPTIONS: "--needed --noconfirm --noprogressbar --overwrite \\*"
matrix:
- MSYSTEM: MINGW64
- MSYSTEM: MINGW32
install:
git submodule update --init --recursive
build_script:
- del C:\Windows\System32\libssl-*.dll C:\Windows\system32\libcrypto-*.dll
- del C:\Windows\SysWOW64\libssl-*.dll C:\Windows\SysWOW64\libcrypto-*.dll
- C:\msys64\usr\bin\pacman -Syuu %PACMAN_OPTIONS%
- C:\msys64\usr\bin\bash --login -c "$(cygpath ${APPVEYOR_BUILD_FOLDER})/buildtools/appveyor.sh"
artifacts:
- path: build\inkscape*.7z
- path: build\inkscape*.exe
- path: build\inkscape*.msi
cache:
- '%APPVEYOR_BUILD_FOLDER%\build\ccache'
test: off
|