-
Notifications
You must be signed in to change notification settings - Fork 0
186 lines (186 loc) · 6.93 KB
/
c-cpp.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
name: C/C++ CI
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
LIBNAME: o.scofo~
LIBVERSION: 0.1
jobs:
macos-universal-build:
runs-on: macos-latest
strategy:
matrix:
arch: [amd64, arm64]
precision: [32, 64]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Install PureData and Deps x86_64 Mac
if: ${{ matrix.arch == 'amd64' }}
run: |
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
arch -x86_64 /usr/local/bin/brew install pd
arch -x86_64 /usr/local/bin/brew install boost
arch -x86_64 /usr/local/bin/brew install pybind11
- name: Install PureData and Deps arm64 Mac
if: ${{ matrix.arch == 'arm64' }}
run: |
brew install pd
brew install boost
brew install pybind11
- name: Build Object for Arm
if: ${{ matrix.arch == 'arm64' }}
run: |
export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/opt/homebrew/include/"
export LDFLAGS="-L/opt/homebrew/lib"
cmake . -B build -DCMAKE_OSX_ARCHITECTURES=arm64 -DPD_FLOATSIZE=${{ matrix.precision }} -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build -j $(sysctl -n hw.logicalcpu)
make install -C build
- name: Build Object for x86_64
if: ${{ matrix.arch == 'amd64' }}
run: |
export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/usr/local/include/"
export LDFLAGS="-L/usr/local/lib"
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DCMAKE_OSX_ARCHITECTURES=x86_64 -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build -j $(sysctl -n hw.logicalcpu)
make install -C build
- name: Upload Object
uses: actions/upload-artifact@v4
with:
name: ${{env.LIBNAME}}-macos-${{matrix.arch}}-${{matrix.precision}}
path: ${{env.LIBNAME}}
windows-build:
runs-on: windows-latest
strategy:
matrix:
compiler: [mingw]
arch: [amd64]
precision: [32, 64] # pd double and single float
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- if: matrix.compiler == 'mingw'
name: Set up Msys2
uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: false
install: make mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-cmake mingw-w64-x86_64-boost mingw-w64-x86_64-pybind11
- name: Install winget
uses: Cyberboss/install-winget@v1
- name: Install PureData Float 32
if: matrix.precision == '32'
run: |
winget install -e --id MillerPuckette.PureData --accept-source-agreements
- name: Install PureData Float 64
if: matrix.precision == '64'
run: |
winget install -e --id MillerPuckette.Pd64 --accept-source-agreements
- name: Configure and build Visual Studio
if: matrix.compiler == 'msvc'
run: |
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build
cmake --install build
- name: Configure and build Mingw
shell: msys2 {0}
if: matrix.compiler == 'mingw'
run: |
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build
cmake --install build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{env.LIBNAME}}-f${{ matrix.precision }}-windows-${{ matrix.compiler }}
path: ${{env.LIBNAME}}
linux-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, aarch64, arm]
precision: [32, 64]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: PureData Sources
run: |
sudo apt update
sudo add-apt-repository ppa:pure-data/pure-data -y
sudo apt install puredata -y
sudo apt install libboost-all-dev
sudo apt install python3-pybind11 -y
- name: Install aarch64 gcc
if: matrix.arch == 'aarch64'
run: |
sudo apt install gcc-aarch64-linux-gnu -y
sudo apt install g++-aarch64-linux-gnu -y
- name: Install arm gcc
if: matrix.arch == 'arm'
run: |
sudo apt install gcc-arm-linux-gnueabihf -y
sudo apt install g++-arm-linux-gnueabihf -y
- name: Build Object
if: matrix.arch == 'amd64'
run: |
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build -- -j$(nproc)
make install -C build
- name: Build Object
if: matrix.arch == 'aarch64'
run: |
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build -- -j$(nproc)
make install -C build
- name: Build Object
if: matrix.arch == 'arm'
run: |
cmake . -B build -DPD_FLOATSIZE=${{ matrix.precision }} -DCMAKE_SYSTEM_PROCESSOR=arm -DPDLIBDIR=./ -DBUILD_ALL=ON
cmake --build build -- -j$(nproc)
make install -C build
- name: Upload Object
uses: actions/upload-artifact@v4
with:
name: ${{ env.LIBNAME }}-linux-${{matrix.arch}}-${{matrix.precision}}
path: ${{env.LIBNAME}}
package-artifacts:
needs: [macos-universal-build, windows-build, linux-build]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: '${{ env.LIBNAME }}-*'
path: artifacts
merge-multiple: true
- name: Clear tmp files
run: rm -f artifacts/*.pdb
# ──────────────────────────────────────
- name: Install Deken
continue-on-error: true
run: |
mkdir -p ${PWD}/package
docker run --rm --user $(id -u) \
--volume ${PWD}/artifacts:/artifacts \
--volume ${PWD}/package:/package \
registry.git.iem.at/pd/deken \
deken package /artifacts --output-dir /package -v ${{env.LIBVERSION}} -n ${{env.LIBNAME}}
- name: Clear Artifacts
uses: geekyeggo/delete-artifact@v5
with:
name: ${{ env.LIBNAME }}-*
- name: Upload Deken
uses: actions/upload-artifact@v4
with:
name: ${{ env.LIBNAME }}-${{env.LIBVERSION}}
path: "./package/"