-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
6,048 additions
and
3 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 |
---|---|---|
|
@@ -25,6 +25,7 @@ body: | |
- Android | ||
- C | ||
- iOS | ||
- Node.js | ||
- Python | ||
- Rust | ||
- Web | ||
|
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,35 @@ | ||
name: Node.js Codestyle | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- '**/nodejs/*.js' | ||
- '**/nodejs/*.ts' | ||
- '.github/workflows/nodejs-codestyle.yml' | ||
pull_request: | ||
branches: [ main, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- '**/nodejs/*.js' | ||
- '**/nodejs/*.ts' | ||
- '.github/workflows/nodejs-codestyle.yml' | ||
|
||
jobs: | ||
check-nodejs-codestyle: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js LTS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: Pre-build dependencies | ||
run: npm install yarn | ||
|
||
- name: Run Binding Linter | ||
run: yarn && yarn lint | ||
working-directory: binding/nodejs |
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,62 @@ | ||
name: Node.js Demos | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- 'demo/nodejs/**' | ||
- '!demo/nodejs/README.md' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs-demos.yml' | ||
|
||
pull_request: | ||
branches: [ main, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'demo/nodejs/**' | ||
- '!demo/nodejs/README.md' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs-demos.yml' | ||
|
||
defaults: | ||
run: | ||
working-directory: demo/nodejs | ||
|
||
jobs: | ||
build-github-hosted: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
node-version: [16.x, 18.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Test | ||
run: yarn file -a ${{secrets.PV_VALID_ACCESS_KEY}} -i ../../res/audio/sample.wav | ||
|
||
build-self-hosted: | ||
runs-on: ${{ matrix.machine }} | ||
|
||
strategy: | ||
matrix: | ||
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Test | ||
run: yarn file -a ${{secrets.PV_VALID_ACCESS_KEY}} -i ../../res/audio/sample.wav |
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,99 @@ | ||
name: Node.js Performance | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- 'binding/nodejs/perf.test.js' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs-perf.yml' | ||
|
||
pull_request: | ||
branches: [ main, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'binding/nodejs/perf.test.js' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs-perf.yml' | ||
|
||
defaults: | ||
run: | ||
working-directory: binding/nodejs | ||
|
||
jobs: | ||
perf-github-hosted: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
include: | ||
- os: ubuntu-latest | ||
num_test_iterations: 50 | ||
proc_performance_threshold_sec: 0.005 | ||
- os: windows-latest | ||
num_test_iterations: 50 | ||
proc_performance_threshold_sec: 0.005 | ||
- os: macos-latest | ||
num_test_iterations: 50 | ||
proc_performance_threshold_sec: 0.005 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js LTS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Test | ||
run: yarn test perf.test.ts --access_key=${{secrets.PV_VALID_ACCESS_KEY}} --num_test_iterations=${{matrix.num_test_iterations}} --proc_performance_threshold_sec=${{matrix.proc_performance_threshold_sec}} | ||
|
||
perf-self-hosted: | ||
runs-on: ${{ matrix.machine }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone] | ||
include: | ||
- machine: rpi2 | ||
num_test_iterations: 20 | ||
- machine: rpi3-32 | ||
num_test_iterations: 50 | ||
- machine: rpi3-64 | ||
num_test_iterations: 50 | ||
- machine: rpi4-32 | ||
num_test_iterations: 50 | ||
- machine: rpi4-64 | ||
num_test_iterations: 50 | ||
- machine: rpi5-64 | ||
num_test_iterations: 50 | ||
- machine: jetson | ||
num_test_iterations: 50 | ||
- machine: beaglebone | ||
num_test_iterations: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Pre-build dependencies | ||
run: npm install --global yarn | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Machine state before | ||
working-directory: res/scripts | ||
run: bash machine-state.sh | ||
|
||
- name: Test | ||
run: yarn test perf.test.ts --access_key=${{secrets.PV_VALID_ACCESS_KEY}} --num_test_iterations=${{matrix.num_test_iterations}} --proc_performance_threshold_sec=0.05 | ||
|
||
- name: Machine state after | ||
working-directory: res/scripts | ||
run: bash machine-state.sh |
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,68 @@ | ||
name: Node.js | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- 'binding/nodejs/**' | ||
- '!binding/nodejs/README.md' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs.yml' | ||
|
||
pull_request: | ||
branches: [ main, 'v[0-9]+.[0-9]+' ] | ||
paths: | ||
- 'binding/nodejs/**' | ||
- '!binding/nodejs/README.md' | ||
- 'lib/node/**' | ||
- '.github/workflows/nodejs.yml' | ||
|
||
defaults: | ||
run: | ||
working-directory: binding/nodejs | ||
|
||
jobs: | ||
build-github-hosted: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
node-version: [16.x, 18.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Pre-build dependencies | ||
run: npm install yarn | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Test | ||
run: yarn test index.test.ts --access_key=${{secrets.PV_VALID_ACCESS_KEY}} | ||
|
||
build-self-hosted: | ||
runs-on: ${{ matrix.machine }} | ||
|
||
strategy: | ||
matrix: | ||
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, jetson, beaglebone] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Pre-build dependencies | ||
run: npm install --global yarn | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Test | ||
run: yarn test index.test.ts --access_key=${{secrets.PV_VALID_ACCESS_KEY}} |
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,5 @@ | ||
node_modules | ||
dist | ||
lib | ||
resources | ||
.eslintrc.js |
Oops, something went wrong.