Skip to content

Commit b595fa2

Browse files
authored
Merge pull request #17 from ErickOF/feature-qa_checks
Adding cpp.yml
2 parents 4ab3708 + e7f71db commit b595fa2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/cpp.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- dev
8+
pull_request:
9+
branches:
10+
- main
11+
- dev
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

Comments
 (0)