-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
appveyor.yml
64 lines (51 loc) · 1.06 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
version: 0.0.{build}
skip_tags: true
skip_commits:
files:
- .github/*
- .github/*/*
- README.md
image:
- Visual Studio 2017
- Ubuntu1804
configuration: Release Optimized
platform: x64
for:
-
matrix:
only:
- image: Visual Studio 2017
environment:
qt: 5.12
arch: x64
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
cc: VS2017
QTDIR: C:\Qt\5.12\msvc2017_64
build:
parallel: true
project: DobieStation\DobieStation.sln
after_build:
- 7z a -xr!*.lib DobieStation.zip .\build\bin\* LICENSE
-
matrix:
only:
- image: Ubuntu1804
environment:
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1804
cc: gcc
install:
- |-
sudo apt-get update -qq
sudo apt-get install -qq qt5-default qtmultimedia5-dev libglu1-mesa-dev
build_script:
- |-
qmake -v
cd DobieStation
qmake DobieStation.pro
make -j$(nproc)
cd $APPVEYOR_BUILD_FOLDER
after_build:
- 7z a DobieStation.zip ./DobieStation/DobieStation LICENSE
test: off
artifacts:
- path: DobieStation.zip