-
Notifications
You must be signed in to change notification settings - Fork 49
42 lines (34 loc) · 1 KB
/
build-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
name: Build C++ SDK
on:
push:
branches:
- main
- rc
- hotfix-rc
pull_request:
jobs:
generate-schemas:
uses: ./.github/workflows/generate_schemas.yml
build:
name: Build
needs: generate-schemas
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: install dependencies
run: |
sudo apt-get install nlohmann-json-dev
sudo apt-get install libboost-all-dev
- name: Download schemas
uses: actions/download-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: sdk-schemas-cpp
path: languages/cpp/include
- name: Build
working-directory: languages/cpp
run: |
mkdir build
cd build
cmake .. -DNLOHMANN=/path/to/include/nlohmann -DBOOST=/path/to/include/boost -DTARGET=../../target/release/libbitwarden_c.dylib
cmake --build .