-
Notifications
You must be signed in to change notification settings - Fork 42
/
appveyor.yml
55 lines (41 loc) · 1.13 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
# Reference: http://www.appveyor.com/docs/appveyor-yml
# Notes:
# - Indent each level of configuration with 2 spaces. Do not use tabs!
#---------------------------------#
# general configuration #
#---------------------------------#
version: 1.0.{build}
branches:
only:
- master
except:
- old_master
- gh-pages
#---------------------------------#
# environment configuration #
#---------------------------------#
shallow_clone: true
matrix:
fast_finish: true
platform:
- x86
configuration:
- Release
environment:
ENGINE_PATH: '%APPVEYOR_BUILD_FOLDER%\Engine'
TESTS_PATH: '%APPVEYOR_BUILD_FOLDER%\Tests'
FPC_PATH: '%APPVEYOR_BUILD_FOLDER%\fpc'
COMPILER_PATH: '%FPC_PATH%\bin\i386-win32\'
install:
- appveyor DownloadFile https://dl.dropboxusercontent.com/u/194502/dev/fpc-win32-2.6.4.7z
- 7z x fpc-win32-2.6.4.7z -o%FPC_PATH% -y
build_script:
- SET PATH=%PATH%;%COMPILER_PATH%
- copy Tests\TERRATest.dpr Build
- cd Build
- compile_tests.bat
- TERRATest.exe
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy: off