Merge pull request #165 from figamore/NanoTrack-Implementation #112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Use openCV from Apt | |
on: | |
push: | |
branches: [ "master", "dev", "*"] | |
paths: | |
- "cc/**" | |
- "install/**" | |
- "lib/**" | |
- "test/**" | |
- "typings/**" | |
- "package.json" | |
- ".github/workflows/prebuild-linux.yml" | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- "cc/**" | |
- "install/**" | |
- "lib/**" | |
- "test/**" | |
- "typings/**" | |
- "package.json" | |
- ".github/workflows/prebuild-linux.yml" | |
env: | |
OPENCV4NODEJS_DISABLE_AUTOBUILD: 1 | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
opencv_version: | |
- 4 | |
node_version: | |
# - 16 | |
# - 18 | |
# - 20 | |
- 22 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9.3.0 | |
- name: Install Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: 'pnpm' | |
- name: Install OpenCV ${{ matrix.opencv_version }} | |
run: | | |
sudo apt update | |
sudo apt install libopencv-dev | |
- run: pnpm install --frozen-lockfile | |
- name: pnpm run prepack | |
run: pnpm run prepack | |
- name: build native code | |
run: npx node-gyp rebuild | |
- name: install deps in test | |
working-directory: ./test | |
run: pnpm install | |
- name: run test-appveyor test | |
working-directory: ./test | |
run: pnpm run test-appveyor |