-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
48 lines (39 loc) · 819 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
43
44
45
46
47
48
version: '0.1.{build}'
platform:
- x86
# - x64
build:
parallel: true
#verbosity: normal
branches:
only:
- master
- basic_101
- basic_102
- basic_142
configuration:
- Debug
# - Release
image: Ubuntu2004
environment:
matrix:
#- OS_DISTTAG: ubuntu-18.04
- OS_DISTTAG: ubuntu-20.04
install:
- sudo apt-get update
- sudo apt-get install wget appstream-util appstream apt-config-icons
before_build:
- cmake --version
build_script:
- echo "project basic_101 ......................."
- git checkout basic_101
- cmake -GNinja -H. -B_build
- cmake --build _build
- ninja -C _build
- ./bin/main
- echo "project basic_102 ......................."
- git checkout basic_102
- cmake -GNinja -H. -B_build
- cmake --build _build
- ninja -C _build
- ./bin/main