Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3.1 #42

Merged
merged 2 commits into from
Apr 10, 2024
Merged

V3.1 #42

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/test-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,28 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-13]
os: [ubuntu-latest, macos-13, windows-latest]
node-version: [12.x]

steps:
- uses: actions/checkout@v3

- name: Install_Deps
- name: Install Dependencies Windows
if: runner.os == 'Windows'
run: |
pip install pydub

- name: Install Dependencies Linux
if: runner.os == 'Linux'
run: |
pip install pydub

- name: Install Dependencies Mac
if: runner.os == 'macOS'
run: |
if [ "${{ matrix.os }}" == "macos-13" ]; then
brew install portaudio
pip install pydub
pip install pyaudio
else
pip install pydub
fi

- name: Test
run: cd python/test ; python3 verify_marvin.py
Binary file added lib/windows/x86_64/nyumaya_premium_3_1.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion python/src/auto_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
print("Please setup a match for your machine in python/src/auto_platform.py")

elif system == "Windows":
print("Windows is currently not supported")
default_libpath = '../../lib/windows/x86_64/nyumaya_premium_3_1.dll'

else:
print("Your OS is currently not supported")
Expand Down
Loading