windows-arm64 #68
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: Node.js Demos | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/nodejs/**' | |
- '!demo/nodejs/README.md' | |
- 'lib/node/**' | |
- '.github/workflows/nodejs-demos.yml' | |
pull_request: | |
branches: [ master, '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] | |
include: | |
- os: ubuntu-latest | |
platform: linux | |
- os: windows-latest | |
platform: windows | |
- os: macos-latest | |
platform: mac | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# ************ REMOVE AFTER RELEASE *************** | |
- name: build local binding | |
run: | | |
yarn install | |
yarn build | |
working-directory: binding/nodejs | |
# ************ REMOVE AFTER RELEASE *************** | |
- name: Install dependencies | |
run: yarn install | |
- name: Test | |
run: yarn file -a ${{secrets.PV_VALID_ACCESS_KEY}} -i ../../resources/audio_samples/test_within_context.wav -c ../../resources/contexts/${{ matrix.platform }}/coffee_maker_${{ matrix.platform }}.rhn | |
build-self-hosted: | |
runs-on: ${{ matrix.machine }} | |
strategy: | |
matrix: | |
machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64, pv-windows-arm64] | |
include: | |
- machine: rpi3-32 | |
platform: raspberry-pi | |
- machine: rpi3-64 | |
platform: raspberry-pi | |
- machine: rpi4-32 | |
platform: raspberry-pi | |
- machine: rpi4-64 | |
platform: raspberry-pi | |
- machine: rpi5-64 | |
platform: raspberry-pi | |
- machine: pv-windows-arm64 | |
platform: windows | |
steps: | |
- uses: actions/checkout@v3 | |
# ************ REMOVE AFTER RELEASE *************** | |
- name: build local binding | |
run: | | |
yarn install | |
yarn build | |
working-directory: binding/nodejs | |
# ************ REMOVE AFTER RELEASE *************** | |
- name: Install dependencies | |
run: yarn install | |
- name: Test | |
run: yarn file -a ${{secrets.PV_VALID_ACCESS_KEY}} -i ../../resources/audio_samples/multiple_keywords.wav -c ../../resources/contexts/${{ matrix.platform }}/coffee_maker_${{ matrix.platform }}.rhn |