Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 committed Jul 21, 2023
1 parent 7eb2408 commit 6ced5e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,3 @@ jobs:

- name: Test
run: python octopus_demo.py --access_key ${{secrets.PV_VALID_ACCESS_KEY}} --audio_paths ../../res/audio/multiple_keywords.wav --search_phrase porcupine

build-self-hosted:
runs-on: ${{ matrix.machine }}

strategy:
matrix:
machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, jetson]

steps:
- uses: actions/checkout@v3

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

- name: Test
run: python3 octopus_demo.py --access_key ${{secrets.PV_VALID_ACCESS_KEY}} --audio_paths ../../res/audio/multiple_keywords.wav --search_phrase porcupine
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ protected void onCreate(Bundle savedInstanceState) {
});

voiceProcessor.addErrorListener(error -> {
runOnUiThread(()-> displayError(error.toString(), Toast.LENGTH_LONG));
runOnUiThread(() -> displayError(error.toString(), Toast.LENGTH_LONG));
});
}

Expand Down

0 comments on commit 6ced5e9

Please sign in to comment.