-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.appveyor.yml
42 lines (35 loc) · 981 Bytes
/
.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
os: Visual Studio 2019
environment:
HOME: "%HOMEDRIVE%%HOMEPATH%"
PYTHON: C:\Python36
SCONS_CACHE: "%HOME%\\scons_cache"
matrix:
- VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
LM_PLATFORM: windows
TOOLS: yes
TARGET: release
ARCH: amd64
cache:
- "%SCONS_CACHE%"
install:
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- easy_install scons
- if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw
- git submodule update --init --recursive
before_build:
- mkdir build
build_script:
- scons platform=%LM_PLATFORM% bits=64 target=%TARGET%
artifacts:
- path: build/libqodot.dll
deploy:
- provider: GitHub
auth_token:
secure: YCKQJa/VO6nHDC8/iCOtJbqQ0nri+/S6zhEHnYzUAj43tmZwxnWQ6NjDB78FZY0v
repository: QodotPlugin/libqodot
artifact: build/libqodot.dll
draft: true
force_update: true
on:
APPVEYOR_REPO_TAG: true
tag: $(APPVEYOR_REPO_TAG_NAME)