-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.appveyor.yml
141 lines (130 loc) · 4.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# heavily 'inspired' by cfillions reapack/reaimgui
version: "{build}-{branch}"
before_build:
- git submodule update --init --recursive --depth 1
build_script:
- cmake -B build -DCMAKE_BUILD_TYPE=Release
-DVCPKG_TARGET_TRIPLET=$TRIPLET -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAIN
-DCMAKE_OSX_ARCHITECTURES=$ARCH -DCMAKE_OSX_DEPLOYMENT_TARGET=$DEPLOY_TARGET
- cmake --build build --target reaper_reafab
- '[ "$ARCH" != `uname -m` ] || cmake --build build --target reaper_reafab'
for:
- matrix: { only: [appveyor_build_worker_image: &linux Ubuntu2004] }
install: |-
set -e
sudo sed -i '/arch=/! s/^deb/deb [arch=amd64,i386]/' /etc/apt/sources.list
awk '
$3 !~ /ubuntu\.com/ { next }
$1 == "deb" {
$2 = "[arch=armhf,arm64]";
$3 = "http://ports.ubuntu.com/ubuntu-ports/"
} 1' /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/ports.list > /dev/null
install-deps() {
local arch="$1"; shift
local native=("$@")
# local target=(libboost-dev)
sudo dpkg --add-architecture $arch
sudo apt-get update -qq
sudo apt-get install -qq aptitude > /dev/null
# sudo aptitude install -yR ${native[@]} ${target[@]/%/:$arch} > /dev/null
sudo aptitude install -yR ${native[@]} > /dev/null
}
sudo update-alternatives --set gcc /usr/bin/gcc-9
case $ARCH in
x86_64)
install-deps amd64
;;
i686)
install-deps i386 g++-multilib
export TOOLCHAIN=cmake/linux-cross.cmake \
TOOLCHAIN_PREFIX=i386-linux-gnu
;;
armv7l)
install-deps armhf g++-arm-linux-gnueabihf
export TOOLCHAIN=cmake/linux-cross.cmake \
TOOLCHAIN_PREFIX=arm-linux-gnueabihf
;;
aarch64)
install-deps arm64 g++-aarch64-linux-gnu
export TOOLCHAIN=cmake/linux-cross.cmake \
TOOLCHAIN_PREFIX=aarch64-linux-gnu
;;
esac
artifacts:
- path: build/reaper_reafab*.so
- matrix:
{
only:
[
appveyor_build_worker_image: macos,
appveyor_build_worker_image: macos-mojave,
],
}
cache:
- build/vcpkg_installed -> vcpkg.json, cmake/vcpkg-triplets/auto-osx.cmake
install:
- TRIPLET=auto-osx TOOLCHAIN=~/vcpkg/scripts/buildsystems/vcpkg.cmake
- export VCPKG_OVERLAY_TRIPLETS=cmake/vcpkg-triplets
- |-
case $ARCH in
arm64) export DEPLOY_TARGET=11.0 XCODE_VERSION=12.3 ;;
*) export DEPLOY_TARGET=10.9 XCODE_VERSION=9.4.1 ;;
esac
- sudo xcode-select -s /Applications/Xcode-$XCODE_VERSION.app
# https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
- sudo curl -k https://curl.se/ca/cacert.pem -o /etc/ssl/cert.pem
artifacts:
- path: build/reaper_reafab*.dylib
- matrix: { only: [appveyor_build_worker_image: &windows Visual Studio 2022] }
cache:
- build\vcpkg_installed -> vcpkg.json
install:
- if "%ARCH%" == "x64" call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
- if "%ARCH%" == "x86" call "%ProgramFiles%\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars32.bat"
build_script:
# - cmake -B build -A %ARCH% -DCMAKE_BUILD_TYPE=RelWithDebInfo
- cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo
-DVCPKG_TARGET_TRIPLET=%ARCH%-windows-static
-DCMAKE_TOOLCHAIN_FILE=C:\Tools\vcpkg\scripts\buildsystems\vcpkg.cmake
- cmake --build build
artifacts:
- path: build\reaper_reafab*.dll
environment:
matrix:
- job_name: Linux x86 64-bit
appveyor_build_worker_image: *linux
ARCH: x86_64
- job_name: macOS x86 64-bit
appveyor_build_worker_image: macos-mojave
ARCH: x86_64
- job_name: Windows 64-bit
appveyor_build_worker_image: *windows
ARCH: x64
- job_name: Windows 32-bit
appveyor_build_worker_image: *windows
ARCH: x86
- job_name: macOS x86 32-bit
appveyor_build_worker_image: macos-mojave
ARCH: i386
- job_name: macOS ARM 64-bit
appveyor_build_worker_image: macos
ARCH: arm64
- job_name: Linux x86 32-bit
appveyor_build_worker_image: *linux
ARCH: i686
- job_name: Linux ARM 64-bit
appveyor_build_worker_image: *linux
ARCH: aarch64
- job_name: Linux ARM 32-bit
appveyor_build_worker_image: *linux
ARCH: armv7l
deploy:
provider: GitHub
draft: true
description: ""
force_update: true
auth_token:
secure: Rk8do2Q/etdabjwIABBRdTJu1a4wYVu9Ltz8HJuC0wc3rz+hHUMGa3N7vTlsrd7z
artifact: /.*\.(dll|dylib|so|lua)/
on:
APPVEYOR_REPO_TAG: true