blob: 4e975d293662a33bfc351f9643645e526ca89ff5 (
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: 1.0.{build}
environment:
matrix:
- FLAVOR: mingw64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
COMPILER: msys2
PLATFORM: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
BIT: 64
install:
# running under CI
- '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\install.bat'
- 'echo End install at: & time /t'
build_script:
- 'pushd %APPVEYOR_BUILD_FOLDER%'
- 'make autobuild -f %APPVEYOR_BUILD_FOLDER%\Makefile'
after_build:
- '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\pack.bat'
artifacts:
- path: '*.zip'
- path: '*.tar'
|