-
Notifications
You must be signed in to change notification settings - Fork 31
/
appveyor.yml
58 lines (43 loc) · 1.19 KB
/
appveyor.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: "1.0.{build}"
environment:
global:
DEPLOY_USER_NAME: 'ctags-win32 CI'
DEPLOY_USER_EMAIL: '[email protected]'
CI_KEY:
secure: LaecAZTo7wMBnPJEKX5CJjFvbfStmZNk+tWTQP9k4M93jLfuPDBnCu30Ktmt0Kdn
matrix:
- compiler: msys2
ARCH: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
- compiler: msys2
ARCH: x86
MSYS2_ARCH: i686
MSYS2_DIR: msys64
MSYSTEM: MINGW32
matrix:
fast_finish: true
build_script:
- '%APPVEYOR_BUILD_FOLDER%\scripts\appveyor.bat build'
after_build:
- '%APPVEYOR_BUILD_FOLDER%\scripts\appveyor.bat package'
test_script:
- '%APPVEYOR_BUILD_FOLDER%\scripts\appveyor.bat test'
artifacts:
- path: ctags\ctags-*.zip
before_deploy:
- for /f "delims=" %%i in (%APPVEYOR_BUILD_FOLDER%\gitlog.txt) do set GITLOG=%%i
deploy:
- provider: GitHub
description: |
Universal Ctags Win32 daily builds ([more information](https://ctags.io)).
### Changes:
$(GITLOG)
auth_token:
secure: WqjLi6FMpAWGSZvDSpVaZ3hNhE69MVeqGNh0CwMcXtu/pPKiLbX+KmBbActqt8Di
artifact: /ctags/
prerelease: true
on:
appveyor_repo_tag: true
# vim: ts=2 sw=2 et