We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ab3708 + e7f71db commit b595fa2Copy full SHA for b595fa2
1 file changed
.github/workflows/cpp.yml
@@ -0,0 +1,27 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: install dependencies
21
+ run: sudo apt-get install -y libopencv-dev
22
+ - name: compile compression
23
+ working-directory: ./modules/compression
24
+ run: make IPS_JPG_AT_EN=1 INCLUDE_OPENCV_PKG=1
25
+ - name: compile edge detector
26
+ working-directory: ./modules/edge-detector
27
+ run: make EDGE_DETECTOR_AT_EN=1 INCLUDE_OPENCV_PKG=1
0 commit comments