-
Notifications
You must be signed in to change notification settings - Fork 5
65 lines (58 loc) · 1.59 KB
/
build.yaml
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
name: Build
on:
workflow_call:
push:
pull_request:
branches:
- master
env:
CONFIGURE_PRESET: ci-release
jobs:
build:
strategy:
matrix:
api-version:
- ref: 7a0ab6ffa99533bc241c88b8761fb82d795dc832
abi: 75
platform:
- name: ubuntu
binary: libbinja-msvc.so
- name: windows
binary: binja-msvc.dll
- name: macos
binary: libbinja-msvc.dylib
runs-on: ${{matrix.platform.name}}-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# Make sure Ninja is installed & we can create the stubs for Windows.
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: ilammy/msvc-dev-cmd@v1
- name: Fetch binaryninja-api
uses: actions/checkout@v4
with:
repository: Vector35/binaryninja-api
ref: ${{matrix.api-version.ref}}
path: binaryninja-api
submodules: recursive
sparse-checkout: |
.
python
rapidjson
rust
cmake
json
vendor
examples
- name: Build
run: |
cmake --preset ${{env.CONFIGURE_PRESET}}
cmake --build build
mv build/${{matrix.platform.binary}} build/${{matrix.api-version.abi}}-${{matrix.platform.binary}}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: lib-${{matrix.platform.name}}-${{matrix.api-version.abi}}
path: build/${{matrix.api-version.abi}}-${{matrix.platform.binary}}
if-no-files-found: error