-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
.drone.yml
372 lines (345 loc) · 11.9 KB
/
.drone.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
---
kind: pipeline
name: book
steps:
- name: test
image: hrektts/mdbook:0.3.7
commands:
- cd docs/arsenal_book
- mdbook test
- name: build
image: hrektts/mdbook
commands:
- cd docs/arsenal_book
- mdbook build
- name: publish
image: plugins/gh-pages
settings:
pages_directory: docs/arsenal_book/build
username:
from_secret: github_username
password:
from_secret: github_access_key
when:
event:
- push
branch:
- master
trigger:
branch:
exclude:
- feature/*
- dependabot/*
# Bors temporary branches
- staging.tmp
- trying.tmp
# ---
# kind: pipeline
# name: arsenal-linux
# steps:
# # Build Python Extension for Linux
# - name: build-arsenal-blender-core
# image: rustlang/rust:nightly
# pull: always
# depends_on:
# - clone
# commands:
# # Build Python 3.7 from source
# - mkdir -p /build
# - cd /build
# - wget https://github.com/python/cpython/archive/v3.7.0.tar.gz
# - tar -xf v3.7.0.tar.gz
# - cd cpython-3.7.0
# - ./configure
# - make -j$(nproc)
# - make install
# # Compile Arsenal plugin
# - cd /drone/src/arsenal_blender_core
# - cargo build --release
# # Build Arsenal runtime for Linux
# - name: build-arsenal-runtime
# image: rust:1.35
# depends_on:
# - clone
# commands:
# - apt-get update
# - >
# apt-get install -y gcc pkg-config openssl libasound2-dev cmake
# build-essential python3 libfreetype6-dev libexpat1-dev
# libxcb-composite0-dev libssl-dev
# - cd arsenal_runtime
# - cargo build --release
# # Package Linux distribution
# - name: package-arsenal-plugin
# image: rust:1.35
# depends_on:
# - build-arsenal-blender-core
# - build-arsenal-runtime
# commands:
# - mkdir -p build/
# - apt-get update
# - apt-get install -y zip
# - cp -r arsenal_blender build/arsenal_blender
# - mkdir -p build/arsenal_blender/bin
# - mv arsenal_blender_core/target/release/libcore.so build/arsenal_blender/core.so
# - mv arsenal_runtime/target/release/arsenal_runtime build/arsenal_blender/bin/arsenal_runtime
# - cd build
# - zip -r arsenal-blender-linux-x86_64.zip arsenal_blender
# # Publish draft to GitHub releases
# - name: publish-draft
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# title: release-draft-linux
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-linux-x86_64.zip
# draft: true
# when:
# ref:
# - refs/tags/release-draft
# # Publish release to GitHub releases
# - name: publish-release
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-linux-x86_64.zip
# when:
# ref:
# - refs/tags/v*
# trigger:
# branch:
# exclude:
# - feature/*
# - dependabot/*
# ---
# kind: pipeline
# name: arsenal-windows
# steps:
# # Build Python Extension for Windows
# - name: build-arsenal-blender-core
# image: rustlang/rust:nightly
# pull: always
# depends_on:
# - clone
# commands:
# # Install Cross-compiler toolchain
# - apt-get update
# - apt-get install -y gcc-mingw-w64
# - rustup target install x86_64-pc-windows-gnu
# # Patch Some MingW Libs. See https://github.com/rust-lang/rust/issues/47048#issuecomment-474118132
# - cp -f /usr/x86_64-w64-mingw32/lib/dllcrt2.o /usr/local/rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-gnu/lib/dllcrt2.o
# - cp -f /usr/x86_64-w64-mingw32/lib/crt2.o /usr/local/rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-gnu/lib/crt2.o
# # Download Python headers and Windows build
# - mkdir -p /build
# - cd /build
# - wget https://www.python.org/ftp/python/3.7.0/python-3.7.0-embed-amd64.zip
# - mkdir /build/python-win
# - cd /build/python-win
# - unzip /build/*.zip
# - ln -s /build/python-win/python37.dll /build/python-win/libpythonXY.dll
# - cd /build
# # Get pyconfig.h from Python source
# - git clone --depth 1 --branch 3.7 https://github.com/python/cpython.git
# - cp cpython/PC/pyconfig.h cpython/Include/pyconfig.h
# - echo '#define Py_ENABLE_SHARED 0' >> cpython/Include/pyconfig.h
# - echo '#define WITH_THREAD 1' >> cpython/Include/pyconfig.h
# # Configure build to use Windows linker and libraries
# - export PYO3_CROSS_INCLUDE_DIR=/build/cpython/Include
# - export PYO3_CROSS_LIB_DIR=/build/python-win
# - cd /drone/src/arsenal_blender_core
# - echo 'fn main() { println!("cargo:rustc-link-search=/build/python-win"); }' > build.rs
# - rm -rf .cargo # Remove any existing build config as we will creating our own here
# - mkdir -p .cargo
# - |
# echo '[target.x86_64-pc-windows-gnu]
# linker = "x86_64-w64-mingw32-gcc"' >> .cargo/config
# # Compile project
# - cargo build --target x86_64-pc-windows-gnu --release
# # Build Arsenal runtime for Windows
# - name: build-arsenal-runtime
# image: rust:1.35
# depends_on:
# - clone
# commands:
# - apt-get update
# - >
# apt-get install -y gcc gcc-mingw-w64 pkg-config openssl libasound2-dev
# cmake build-essential python3 libfreetype6-dev libexpat1-dev
# libxcb-composite0-dev libssl-dev
# - rustup target install x86_64-pc-windows-gnu
# - cd arsenal_runtime
# - rm -rf .cargo # Remove any existing build config as we will creating our own here
# - mkdir -p .cargo
# - |
# echo '[target.x86_64-pc-windows-gnu]
# linker = "x86_64-w64-mingw32-gcc"' >> .cargo/config
# - cargo build --target x86_64-pc-windows-gnu --release
# # Package Windows distribution
# - name: package-arsenal-plugin
# image: rust:1.35
# depends_on:
# - build-arsenal-blender-core
# - build-arsenal-runtime
# commands:
# - mkdir -p build/
# - apt-get update
# - apt-get install -y zip
# - cp -r arsenal_blender build/arsenal_blender
# - mkdir -p build/arsenal_blender/bin
# - mv arsenal_blender_core/target/x86_64-pc-windows-gnu/release/core.dll build/arsenal_blender/core.pyd
# - mv arsenal_runtime/target/x86_64-pc-windows-gnu/release/arsenal_runtime.exe build/arsenal_blender/bin/arsenal_runtime
# - cd build
# - zip -r arsenal-blender-windows-x86_64.zip arsenal_blender
# # Publish draft to GitHub releases
# - name: publish-draft
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# title: release-draft-windows
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-windows-x86_64.zip
# draft: true
# when:
# ref:
# - refs/tags/release-draft
# # Publish release to GitHub releases
# - name: publish-release
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-windows-x86_64.zip
# when:
# ref:
# - refs/tags/v*
# trigger:
# branch:
# exclude:
# - feature/*
# - dependabot/*
# ---
# kind: pipeline
# name: arsenal-mac
# steps:
# # Build Python Extension for Mac
# - name: build-arsenal
# image: rustlang/rust:nightly
# pull: always
# depends_on:
# - clone
# commands:
# # Install Cross-compiler toolchain
# - apt-get update
# - apt-get install -y clang cmake cpio make libssl-dev lzma-dev libxml2-dev
# - rustup target add x86_64-apple-darwin
# - mkdir -p /build
# - cd /build
# - git clone --depth 1 https://github.com/tpoechtrager/osxcross.git
# - cd /build/osxcross/tarballs
# - wget https://s3.dockerproject.org/darwin/v2/MacOSX10.11.sdk.tar.xz
# - cd /build/osxcross
# - UNATTENDED=yes OSX_VERSION_MIN=10.7 ./build.sh
# - export PATH="$PATH:/build/osxcross/target/bin"
# - ln -s /build/osxcross/target/SDK/MacOSX10.11.sdk/System/ /System
# # Install 7Zip for unziping the mac Python .pkg
# - cd /build
# - git clone https://github.com/tpoechtrager/p7zip.git
# - cd /build/p7zip
# - make 7z -j$(nproc)
# - make install
# # Download Python headers and Mac build of Python
# - mkdir /build/python-mac
# - cd /build/python-mac
# - wget https://www.python.org/ftp/python/3.7.0/python-3.7.0-macosx10.6.pkg
# - 7z x python-3.7.0-macosx10.6.pkg
# - cpio -i < Payload~
# - echo '#define Py_ENABLE_SHARED 0' >> /build/python-mac/Versions/3.7/Headers/pyconfig.h
# - export PYO3_CROSS_INCLUDE_DIR=/build/python-mac/Versions/3.7/Headers
# - export PYO3_CROSS_LIB_DIR=/build/python-mac/Versions/3.7/lib
# - export CC=x86_64-apple-darwin15-clang
# # Configure build to use Mac linker and libraries
# - cd /drone/src/arsenal_blender_core
# - rm -rf .cargo # Remove any existing build config as we will creating our own here
# - mkdir -p .cargo
# - |
# echo '[target.x86_64-apple-darwin]
# linker = "x86_64-apple-darwin15-clang"
# rustflags = ["-C", "rpath", "-C", "link-arg=-undefined","-C", "link-arg=dynamic_lookup"]' >> .cargo/config
# # Compile arsenal_blender_core
# - cargo build --target x86_64-apple-darwin --release
# # Compile arsenal runtime
# - cd /drone/src/arsenal_runtime
# - rm -rf .cargo # Remove any existing build config as we will creating our own here
# - mkdir -p .cargo
# - |
# echo '[target.x86_64-apple-darwin]
# linker = "x86_64-apple-darwin15-clang"' >> .cargo/config
# - rustup toolchain add stable-2019-05-23
# - rustup default stable-2019-05-23
# - rustup target add x86_64-apple-darwin
# - export COREAUDIO_FRAMEWORKS_PATH='/System/Library/Frameworks'
# - >
# export COREAUDIO_CFLAGS='-I/System/Library/Frameworks/Kernel.framework/Headers
# -I/build/osxcross/target/SDK/MacOSX10.11.sdk/usr/include'
# - cargo build --target x86_64-apple-darwin --release
# # Package Mac distribution
# - name: package-arsenal-plugin
# image: rust:latest
# depends_on:
# - build-arsenal
# commands:
# - mkdir -p build/
# - apt-get update
# - apt-get install -y zip
# - cp -r arsenal_blender build/arsenal_blender
# - mkdir -p build/arsenal_blender/bin
# - mv arsenal_blender_core/target/x86_64-apple-darwin/release/libcore.dylib build/arsenal_blender/core.so
# - mv arsenal_runtime/target/x86_64-apple-darwin/release/arsenal_runtime build/arsenal_blender/bin/arsenal_runtime
# - cd build
# - zip -r arsenal-blender-mac-x86_64.zip arsenal_blender
# # Publish draft to GitHub releases
# - name: publish-draft
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# title: release-draft-mac
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-mac-x86_64.zip
# draft: true
# when:
# ref:
# - refs/tags/release-draft
# # Publish release to GitHub releases
# - name: publish-release
# image: plugins/github-release
# depends_on:
# - package-arsenal-plugin
# settings:
# api_key:
# from_secret: github_access_key
# files:
# - build/arsenal-blender-mac-x86_64.zip
# when:
# ref:
# - refs/tags/v*
# trigger:
# branch:
# exclude:
# - feature/*
# - dependabot/*