-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
60 lines (51 loc) · 1.39 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
59
version: '6.0.51.{BUILD}'
image: Visual Studio 2019
install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
- set PATH=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATH%
- set ORANGEC=c:\OMAKE
branches:
only:
- master
- /v\d*\.\d*\.\d*\.\d*/
configuration:
- OMAKE
for:
-
matrix:
only:
- configuration: OMAKE
environment:
BUILD_PROFILE: MS
deploy:
release: OMAKE-(APPVEYOR_REPO_TAG_NAME)
description: 'Current Release'
provider: GitHub
auth_token:
secure: L2Uw6o1Msz3bAsw+p2n9bjxJqqtuP+7YuJNaWtpsRnWZ3JWDjkULQG6c6YRPk+v+
artifact: /.*/
draft: false
prerelease: false
on:
branch: /v\d*\.\d*\.\d*\.\d*/
APPVEYOR_REPO_TAG: true
skip_commits:
files:
- '**/*.txt'
- '**/*.doc'
- '**/*.md'
- '**/*.html'
build_script:
# the appveyor virtual machine reported two processors, so, lets try running parallel compile!
- cmd: |
cd ..\..
move projects\omake .
mkdir \omake\temp
cd omake\src
call build.bat
cd ..\..
move omake projects
cd projects\omake
artifacts:
- path: "dist\\*.*"
name: releasefiles