-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathappveyor.yml
77 lines (53 loc) · 1.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: '0.0.1.{build}'
#configuration: Debug
#platform: AnyCPU
image:
- Ubuntu1804
- Visual Studio 2019
shallow_clone: false
build: off
skip_tags: true
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
for:
# Windows Build - Visual Studio 2019:
-
matrix:
only:
- image: Visual Studio 2019
# install:
# - cmd: choco install InnoSetup
# - cmd: SET PATH=C:\Program Files (x86)\Inno Setup 6;%PATH%
before_build:
build:
after_build:
build_script:
test_script:
after_test:
#nuget:
#test: off
artifacts:
deploy:
# Linux Build:
-
matrix:
only:
- image: Ubuntu1804
install:
- sh: sudo apt-get -y -o Acquire::Check-Valid-Until=false update
#- sh: sudo apt-get -y upgrade
- sh: sudo apt-get install -y --no-install-recommends git wget nasm qemu-system-x86 mtools xorriso grub-common grub-pc-bin grub-efi-amd64-bin grub-efi-ia32-bin
before_build:
- sh: chmod +x $APPVEYOR_BUILD_FOLDER/abctl
- sh: $APPVEYOR_BUILD_FOLDER/abctl configure cloud-test
build: off
build_script:
- sh: $APPVEYOR_BUILD_FOLDER/abctl build all
- sh: $APPVEYOR_BUILD_FOLDER/abctl test cloud
on_finish:
- sh: export APPVEYOR_SSH_BLOCK=true
- sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e -