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

update libfaust to 2.72.14 #27

Merged
merged 1 commit into from
Apr 13, 2024
Merged
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
11 changes: 9 additions & 2 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,20 @@ jobs:

- name: Make distribution
run: |
Remove-Item -Recurse -Force "${{ github.workspace }}/Plugins/faustlibraries/.git"
Remove-Item -Recurse -Force "Plugins/faustlibraries/.git"
mkdir TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
move ${{ github.workspace }}/Plugins/TD-Faust.dll TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
move ${{ github.workspace }}/Plugins/Reverb.dll TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
move ${{ github.workspace }}/Plugins/sndfile.dll TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
cp -v -r ${{ github.workspace }}/Plugins/faustlibraries TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
7z a TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}.zip ./TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}/* -r

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}
path: Plugins
path: TD-Faust-${{ matrix.name }}-Python${{ matrix.python-major }}.zip
if-no-files-found: error

build-macos:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/libfaust/download_libfaust.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def main(version: str) -> None:
sys.exit("Python %s.%s or later is required.\n" % MIN_PYTHON)

parser = argparse.ArgumentParser(description="Download and install Libfaust.")
parser.add_argument("-v", "--version", default="2.70.3", help="Specify the version of Faust to download.")
parser.add_argument("-v", "--version", default="2.72.14", help="Specify the version of Faust to download.")
parser.add_argument("--force", action="store_true", help="Force download even if files already exist.")
args = parser.parse_args()

Expand Down