-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
44 lines (35 loc) · 909 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
image:
- Visual Studio 2022
- Ubuntu
environment:
BUILD_TYPE: Release
clone_depth: 1
cache:
- build.tar -> CMakeLists.txt
for:
-
matrix:
only:
- image: Ubuntu
install:
- sh: |
sudo apt -q -y install libasound2-dev
before_build:
- ps: |
if (Test-Path build.tar -PathType Leaf){
tar -x -f build.tar
}
build_script:
- ps: |
if (!(Test-Path build -PathType Container)){
cmake -B build -DCMAKE_BUILD_TYPE="$env:BUILD_TYPE"
}
cmake --build build --config $env:BUILD_TYPE
on_success:
- ps: |
tar -c -f build.tar build
artifacts:
- path: build/FaderVST_artefacts/$(BUILD_TYPE)/VST3/FaderVST.vst3/Contents/x86_64-win/FaderVST.vst3
name: FaderVST-win.vst3
- path: build/FaderVST_artefacts/$(BUILD_TYPE)/VST3/FaderVST.vst3/Contents/x86_64-linux/FaderVST.so
name: FaderVST-linux.vst3