-
Notifications
You must be signed in to change notification settings - Fork 2
205 lines (201 loc) · 9.02 KB
/
libaltsound.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: libaltsound
on:
push:
pull_request:
defaults:
run:
shell: bash
jobs:
version:
name: Detect version
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.version.outputs.tag }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: version
run: |
VERSION_MAJOR=$(grep -Eo "ALTSOUND_VERSION_MAJOR\s+[0-9]+" src/altsound.h | grep -Eo "[0-9]+")
VERSION_MINOR=$(grep -Eo "ALTSOUND_VERSION_MINOR\s+[0-9]+" src/altsound.h | grep -Eo "[0-9]+")
VERSION_PATCH=$(grep -Eo "ALTSOUND_VERSION_PATCH\s+[0-9]+" src/altsound.h | grep -Eo "[0-9]+")
TAG="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"
echo "${TAG}"
echo "tag=${TAG}" >> $GITHUB_OUTPUT
build:
name: Build libaltsound-${{ matrix.platform }}-${{ matrix.arch }}
runs-on: ${{ matrix.os }}
needs: [ version ]
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
platform: win
arch: x64
- os: windows-latest
platform: win
arch: x86
- os: macos-latest
platform: macos
arch: arm64
- os: macos-latest
platform: macos
arch: x64
- os: ubuntu-latest
platform: linux
arch: x64
- os: ubuntu-latest
platform: linux
arch: aarch64
- os: ubuntu-latest
platform: android
arch: arm64-v8a
- os: macos-latest
platform: ios
arch: arm64
- os: macos-latest
platform: tvos
arch: arm64
steps:
- uses: actions/checkout@v4
- if: (!(matrix.platform == 'linux' && matrix.arch == 'aarch64'))
name: Build libaltsound-${{ matrix.platform }}-${{ matrix.arch }}
run: |
./platforms/${{ matrix.platform }}/${{ matrix.arch }}/external.sh
if [[ "${{ matrix.platform }}" == "win" ]]; then
if [[ "${{ matrix.arch }}" == "x86" ]]; then
cmake -G "Visual Studio 17 2022" -A Win32 -DPLATFORM=${{ matrix.platform }} -DARCH=${{ matrix.arch }} -B build
else
cmake -G "Visual Studio 17 2022" -DPLATFORM=${{ matrix.platform }} -DARCH=${{ matrix.arch }} -B build
fi
cmake --build build --config Release
else
if [[ "$(uname)" == "Darwin" ]]; then
NUM_PROCS=$(sysctl -n hw.ncpu)
else
NUM_PROCS=$(nproc)
fi
cmake -DCMAKE_BUILD_TYPE=Release -DPLATFORM=${{ matrix.platform }} -DARCH=${{ matrix.arch }} -B build
cmake --build build -- -j${NUM_PROCS}
fi
- if: (matrix.platform == 'linux' && matrix.arch == 'aarch64')
name: Build libaltsound-${{ matrix.platform }}-${{ matrix.arch }} (arm runner)
uses: pguyot/arm-runner-action@v2
with:
base_image: raspios_lite_arm64:latest
image_additional_mb: 4096
cpu: cortex-a53
cpu_info: cpuinfo/raspberrypi_zero2_w_arm64
bind_mount_repository: true
commands: |
apt-get update -y --allow-releaseinfo-change
apt-get install --no-install-recommends -y pkg-config cmake autoconf automake libtool
./platforms/${{ matrix.platform }}/${{ matrix.arch }}/external.sh
NUM_PROCS=$(nproc)
cmake -DCMAKE_BUILD_TYPE=Release -DPLATFORM=${{ matrix.platform }} -DARCH=${{ matrix.arch }} -B build
cmake --build build -- -j${NUM_PROCS}
- name: Prepare artifacts
id: artifacts
run: |
mkdir tmp
if [[ "${{ matrix.platform }}" == "win" ]]; then
ARTIFACT_PATH="tmp"
if [[ "${{ matrix.arch }}" == "x86" ]]; then
cp build/Release/altsound.lib tmp
cp build/Release/altsound.dll tmp
else
cp build/Release/altsound64.lib tmp
cp build/Release/altsound64.dll tmp
fi
cp build/Release/altsound_static.lib tmp
cp build/Release/bass.lib tmp
cp build/Release/bass.dll tmp
cp build/Release/altsound_test_s.exe tmp
cp build/Release/altsound_test.exe tmp
else
ARTIFACT_PATH="libaltsound-${{ needs.version.outputs.tag }}-${{ matrix.platform }}-${{ matrix.arch }}.tar.gz"
if [[ "${{ matrix.platform }}" == "macos" ]]; then
cp build/libaltsound.a tmp
cp build/libaltsound.*.dylib tmp
cp build/libbass.dylib tmp
cp build/altsound_test_s tmp
cp build/altsound_test tmp
elif [[ "${{ matrix.platform }}" == "linux" ]]; then
cp build/libaltsound.a tmp
cp build/libaltsound.so.* tmp
cp build/libbass.so tmp
cp build/altsound_test_s tmp
cp build/altsound_test tmp
elif [[ "${{ matrix.platform }}" == "ios" || "${{ matrix.platform }}" == "tvos" ]]; then
cp build/libaltsound.a tmp
cp build/libaltsound.*.dylib tmp
elif [[ "${{ matrix.platform }}" == "android" ]]; then
cp build/libaltsound.a tmp
cp build/libaltsound.so tmp
fi
cd tmp
tar -czvf ../${ARTIFACT_PATH} *
fi
echo "artifact_path=${ARTIFACT_PATH}" >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: libaltsound-${{ needs.version.outputs.tag }}-${{ matrix.platform }}-${{ matrix.arch }}
path: ${{ steps.artifacts.outputs.artifact_path }}
post-build:
runs-on: macos-latest
needs: [ version, build ]
name: Build libaltsound-macos
steps:
- uses: actions/download-artifact@v3
- name: Unpack artifacts
run: |
cd libaltsound-${{ needs.version.outputs.tag }}-macos-x64
tar -xzvf libaltsound-${{ needs.version.outputs.tag }}-macos-x64.tar.gz
cd ..
cd libaltsound-${{ needs.version.outputs.tag }}-macos-arm64
tar -xzvf libaltsound-${{ needs.version.outputs.tag }}-macos-arm64.tar.gz
- name: Combine macos architectures
run: |
mkdir tmp
lipo -create -output tmp/libaltsound-${{ needs.version.outputs.tag }}.dylib \
libaltsound-${{ needs.version.outputs.tag }}-macos-arm64/libaltsound.${{ needs.version.outputs.tag }}.dylib \
libaltsound-${{ needs.version.outputs.tag }}-macos-x64/libaltsound.${{ needs.version.outputs.tag }}.dylib
lipo -create -output tmp/altsound_test \
libaltsound-${{ needs.version.outputs.tag }}-macos-arm64/altsound_test \
libaltsound-${{ needs.version.outputs.tag }}-macos-x64/altsound_test
lipo -create -output tmp/altsound_test_s \
libaltsound-${{ needs.version.outputs.tag }}-macos-arm64/altsound_test_s \
libaltsound-${{ needs.version.outputs.tag }}-macos-x64/altsound_test_s
- name: Prepare artifacts
run: |
cd tmp
tar -czvf ../libaltsound-${{ needs.version.outputs.tag }}-macos.tar.gz *
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: libaltsound-${{ needs.version.outputs.tag }}-macos
path: libaltsound-${{ needs.version.outputs.tag }}-macos.tar.gz
- name: Package
if: startsWith(github.ref, 'refs/tags/')
run: |
zip -r libaltsound-${{ needs.version.outputs.tag }}-win-x64.zip libaltsound-${{ needs.version.outputs.tag }}-win-x64
zip -r libaltsound-${{ needs.version.outputs.tag }}-win-x86.zip libaltsound-${{ needs.version.outputs.tag }}-win-x86
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
files: |
libaltsound-${{ needs.version.outputs.tag }}-win-x64.zip
libaltsound-${{ needs.version.outputs.tag }}-win-x86.zip
libaltsound-${{ needs.version.outputs.tag }}-macos-arm64/libaltsound-${{ needs.version.outputs.tag }}-macos-arm64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-macos-x64/libaltsound-${{ needs.version.outputs.tag }}-macos-x64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-macos.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-linux-x64/libaltsound-${{ needs.version.outputs.tag }}-linux-x64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-linux-aarch64/libaltsound-${{ needs.version.outputs.tag }}-linux-aarch64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-ios-arm64/libaltsound-${{ needs.version.outputs.tag }}-ios-arm64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-tvos-arm64/libaltsound-${{ needs.version.outputs.tag }}-tvos-arm64.tar.gz
libaltsound-${{ needs.version.outputs.tag }}-android-arm64-v8a/libaltsound-${{ needs.version.outputs.tag }}-android-arm64-v8a.tar.gz