Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matt200-ok committed Jan 10, 2025
1 parent 3fe65e7 commit 08b55c5
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/c-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,10 @@ jobs:
- machine: rpi5-64
platform: raspberry-pi
arch: cortex-a76-aarch64
include:
- machine: pv-windows-arm64
platform: windows
arch: arm64
make_file: "MinGW Makefiles"
- machine: pv-windows-arm64
platform: windows
arch: arm64
make_file: "MinGW Makefiles"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/dotnet-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
platform: raspberry-pi
- machine: rpi5-64
platform: raspberry-pi
- machine: pv-windows-arm64
platform: windows

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nodejs-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ jobs:
platform: raspberry-pi
- machine: rpi5-64
platform: raspberry-pi
- machine: pv-windows-arm64
platform: windows

steps:
- uses: actions/checkout@v3
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ jobs:
- name: Pre-build dependencies
run: python -m pip install --upgrade pip

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
python3 -m pip install setuptools wheel
python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: pip install -r requirements.txt

Expand Down Expand Up @@ -75,9 +83,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: pip3 install -r requirements.txt

# ************ REMOVE AFTER RELEASE ***************
- name: build local binding
run: |
Expand All @@ -86,5 +91,8 @@ jobs:
working-directory: binding/python
# ************ REMOVE AFTER RELEASE ***************

- name: Install dependencies
run: pip3 install -r requirements.txt

- name: Test
run: python3 rhino_demo_file.py --access_key ${{secrets.PV_VALID_ACCESS_KEY}} --wav_path ../../resources/audio_samples/test_within_context.wav --context_path ../../resources/contexts/${{ matrix.platform }}/coffee_maker_${{ matrix.platform }}.rhn
2 changes: 1 addition & 1 deletion binding/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ task copyWindowsLib(type: Copy) {
from('../../lib/java/windows/')
include('amd64/pv_rhino_jni.dll',
'arm64/pv_rhino_jni.dll')
into "${outputDir}/rhino/lib/java/windows/amd64/"
into "${outputDir}/rhino/lib/java/windows/"
}
task copyRPiLib(type: Copy) {
from('../../lib/java/raspberry-pi/')
Expand Down

0 comments on commit 08b55c5

Please sign in to comment.