-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (98 loc) · 3.08 KB
/
Copy path_c_cpp.yaml
File metadata and controls
117 lines (98 loc) · 3.08 KB
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
name: C and C++ CI Workflow
on:
workflow_call:
inputs:
os:
description: "Operating system to run on"
required: false
type: string
default: "ubuntu-latest"
jobs:
# ----------------------------------------------------------------------------
# Build C and C++ Package
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Test C
# ----------------------------------------------------------------------------
test-c-bazel:
name: Test C Bindings with Bazel
runs-on: ${{ inputs.os }}
env:
CI: true
BAZELISK_ALLOW_ENVS: Y
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Bazel
uses: actions/cache@v4
with:
path: ~/.cache/bazel
key: bazel-${{ runner.os }}
restore-keys: bazel-${{ runner.os }}
- name: Run C Example (Bazel)
run: |
bazel run //examples/c:c_example
test-c-cmake:
name: Test C Bindings with CMake
runs-on: ${{ inputs.os }}
env:
CI: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Rust for CMake
uses: dtolnay/rust-toolchain@stable
- name: Run C Example (CMake)
run: |
cmake -S . -B build
cmake --build build --target dv_example_c
./build/examples/c/dv_example_c
# ----------------------------------------------------------------------------
# Test C++
# ----------------------------------------------------------------------------
test-cpp-bazel:
name: Test C++ Bindings with Bazel
runs-on: ${{ inputs.os }}
env:
CI: true
BAZELISK_ALLOW_ENVS: Y
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Bazel
uses: actions/cache@v4
with:
path: ~/.cache/bazel
key: bazel-${{ runner.os }}
restore-keys: bazel-${{ runner.os }}
- name: Run C++ Example (Bazel)
run: bazel run //examples/cpp:cpp_example
- name: Run C++ Regression Tests
run: bazel test //tests:regression_cpp_tests --test_output=errors --keep_going
test-cpp-cmake:
name: Test C++ Bindings with CMake
runs-on: ${{ inputs.os }}
env:
CI: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Rust for CMake
uses: dtolnay/rust-toolchain@stable
- name: Run C++ Example (CMake)
run: |
cmake -S . -B build
cmake --build build --target dv_example_cpp
./build/examples/cpp/dv_example_cpp
# ----------------------------------------------------------------------------
# Publish C/C++ Package
# ----------------------------------------------------------------------------
# No publish step for C/C++ packages