-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
appveyor.yml
85 lines (63 loc) · 1.49 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
78
79
80
81
82
83
84
85
image:
- macos-mojave
- Ubuntu2004
- Visual Studio 2017
version: 2.6.5.{build}
pull_requests:
do_not_increment_build_number: true
configuration: Release
platform:
- x64
build:
project: nx.sln
verbosity: minimal
artifacts:
- path: NXEngine-*.zip
name: winbuild
- path: NXEngine-*.dmg
name: osxbuild
- path: NXEngine-*.AppImage
name: appimagebuild
deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
tag: $(APPVEYOR_REPO_TAG_NAME)
description: ''
auth_token:
secure: UNAaCG+KMRMqZqVEHpSgXTXZOJlqEQ/7nySQ6U/LutHjXnuqVNpYDxoqIW1hufI+
draft: true
force_update: true
prerelease: false
on:
APPVEYOR_REPO_TAG: true
for:
-
matrix:
only:
- image: Visual Studio 2017
after_build:
- ps: .\build-scripts\ci\win.package.ps1
-
matrix:
only:
- image: Ubuntu2004
install:
- sudo apt update
- sudo apt install -yqq libsdl2-dev libsdl2-mixer-dev libsdl2-image-dev libjpeg-dev libpng-dev ninja-build
build_script:
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=build/AppDir/usr -Bbuild -H.
- ninja -Cbuild
after_build:
- build-scripts/ci/linux.deploy.sh
-
matrix:
only:
- image: macos-mojave
install:
- brew update
- brew install sdl2 sdl2_mixer sdl2_image libjpeg libpng ninja coreutils
build_script:
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release -Bbuild -H.
- ninja -Cbuild
after_build:
- sh: build-scripts/ci/osx.deploy.sh $0