Skip to content

Commit 6998b26

Browse files
committed
ci: Install pkgconfig for OpenCV 4
1 parent 58b68b6 commit 6998b26

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,19 @@ jobs:
2424
- uses: actions/checkout@v1
2525
with:
2626
submodules: true
27+
2728
- name: Add OpenCV 3.4 PPA
2829
if: matrix.os == 'ubuntu-18.04'
2930
run: sudo add-apt-repository -y ppa:~timsc/opencv-3.4
31+
3032
- name: Install dependencies
3133
run: |
3234
sudo apt-get install --no-install-recommends -y \
3335
libopencv-dev python3-opencv
34-
- run: python3 -m pip install setuptools wheel
36+
37+
- name: Install Python setup requirements
38+
run: python3 -m pip install setuptools wheel pkgconfig
39+
3540
- run: python3 setup.py sdist
3641
- run: python3 -m pip install dist/*.tar.gz
3742
- run: python3 -m cscore --help

0 commit comments

Comments
 (0)