forked from justadudewhohacks/opencv4nodejs
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from UrielCh/dev
fix compilation warning
- Loading branch information
Showing
50 changed files
with
1,597 additions
and
1,201 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
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 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- name: Install Node.js ${{ matrix.node_version }} | ||
uses: actions/setup-node@v3 | ||
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Use openCV from Brew | ||
|
||
on: | ||
push: | ||
branches: [ "master", "dev" ] | ||
paths: | ||
- "cc/**" | ||
- "install/**" | ||
- "lib/**" | ||
- "test/**" | ||
- "typings/**" | ||
- "package.json" | ||
- ".github/workflows/prebuild-mac.yml" | ||
pull_request: | ||
branches: [ "master" ] | ||
paths: | ||
- "cc/**" | ||
- "install/**" | ||
- "lib/**" | ||
- "test/**" | ||
- "typings/**" | ||
- "package.json" | ||
- ".github/workflows/prebuild-mac.yml" | ||
|
||
env: | ||
OPENCV4NODEJS_DISABLE_AUTOBUILD: 1 | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
opencv_version: | ||
- 4 | ||
node_version: | ||
# - 16 | ||
# - 18 | ||
- 20 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- name: Install Node.js ${{ matrix.node_version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
cache: 'pnpm' | ||
|
||
- name: Install OpenCV ${{ matrix.opencv_version }} | ||
run: | | ||
brew install opencv@${{ matrix.opencv_version }} | ||
- name: run pnpm install | ||
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 --frozen-lockfile | ||
|
||
- name: run test-appveyor test | ||
working-directory: ./test | ||
run: pnpm run test-appveyor |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env node | ||
import * as compileLib from "../install/compileLib"; | ||
const {argv} = process; | ||
compileLib.compileLib(argv); |
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
Oops, something went wrong.