Fix memory allocation bug in JPVerb #140
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.html' | |
| - '**.schelp' | |
| - 'README' | |
| - 'LICENSE' | |
| - '_data/**' | |
| - '.bundle/**' | |
| - 'assets/**' | |
| - 'index.*' | |
| - '_config.yml' | |
| - 'Gemfile*' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.html' | |
| - '**.schelp' | |
| - 'README' | |
| - 'LICENSE' | |
| - '_data/**' | |
| - '.bundle/**' | |
| - 'assets/**' | |
| - 'index.*' | |
| - '_config.yml' | |
| - 'Gemfile*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: Linux-x64-22.04 | |
| os: ubuntu-22.04 | |
| cmake-flags: '-G "Unix Makefiles"' | |
| cache-path: '~/.cache/ccache' | |
| - name: Linux-x64-24.04 | |
| os: ubuntu-24.04 | |
| cmake-flags: '-G "Unix Makefiles"' | |
| cache-path: '~/.cache/ccache' | |
| - name: macOS | |
| os: macos-14 | |
| cmake-flags: '-G Xcode -D CMAKE_OSX_ARCHITECTURES="x86_64;arm64"' | |
| xcode-version: '15.4' | |
| deployment-target: '10.15' | |
| cache-path: '~/Library/Caches/ccache' | |
| - name: Windows-32bit | |
| os: windows-2022 | |
| cmake-flags: '-G "Visual Studio 17 2022" -A Win32' | |
| vcvars-script: 'C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars32.bat' | |
| fftw-url: 'ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5-dll32.zip' | |
| fftw-arch: 'X86' | |
| cache-path: '~/AppData/Local/ccache' | |
| - name: Windows-64bit | |
| os: windows-2022 | |
| cmake-flags: '-G "Visual Studio 17 2022" -A x64' | |
| vcvars-script: 'C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat' | |
| fftw-url: 'ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5-dll64.zip' | |
| fftw-arch: 'X64' | |
| cache-path: '~/AppData/Local/ccache' | |
| env: | |
| SC_SRC_PATH: ${{ github.workspace }}/supercollider | |
| BUILD_PATH: ${{ github.workspace }}/build | |
| INSTALL_PATH: ${{ github.workspace }}/build/install | |
| FFTW_INSTALL_DIR: "C:/Program Files/fftw" | |
| DEVELOPER_DIR: '/Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer' | |
| MACOSX_DEPLOYMENT_TARGET: '${{ matrix.deployment-target }}' | |
| name: ${{ matrix.name }} | |
| steps: | |
| - name: set filename # use tag or sha for version | |
| id: set-filename | |
| shell: bash | |
| run: | | |
| if [[ "$GITHUB_REF" == refs/tags/* ]]; then | |
| FULL_TAG=${GITHUB_REF#refs/tags/} | |
| VERSION=${FULL_TAG##Version-} | |
| else | |
| VERSION=$GITHUB_SHA | |
| fi | |
| echo "filename=sc3-plugins-$VERSION-${{ matrix.name }}" >> $GITHUB_OUTPUT | |
| - name: checkout sc3-plugins | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: checkout supercollider | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: supercollider/supercollider | |
| path: ${{ env.SC_SRC_PATH }} | |
| ref: main | |
| - name: cache ccache | |
| uses: actions/cache@v5 | |
| if: matrix.cache-path | |
| with: | |
| path: ${{ matrix.cache-path }} | |
| key: ${{ matrix.name }}-${{ github.run_id }} | |
| restore-keys: ${{ matrix.name }}- | |
| - name: install Linux dependencies | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get install --yes libfftw3-dev ccache | |
| - name: install macOS dependencies | |
| if: runner.os == 'macOS' | |
| run: brew install ccache | |
| - name: install Windows dependencies | |
| if: runner.os == 'Windows' | |
| shell: bash | |
| run: | | |
| choco install ccache --no-progress | |
| echo "`echo c:/ProgramData/chocolatey/lib/ccache/tools/ccache*`" >> $GITHUB_PATH # put the direct path before the path of the choco's "shim" (link substitute) | |
| - name: install FFTW | |
| if: runner.os == 'Windows' | |
| shell: bash | |
| run: | | |
| mkdir -p "$FFTW_INSTALL_DIR" && cd "$FFTW_INSTALL_DIR" | |
| curl -L ${{ matrix.fftw-url }} -o fftw.zip | |
| 7z x fftw.zip -y | |
| - name: create FFTW MSVC library | |
| if: matrix.vcvars-script | |
| shell: cmd | |
| working-directory: ${{ env.FFTW_INSTALL_DIR }} | |
| run: | | |
| call "${{ matrix.vcvars-script }}" | |
| lib.exe /machine:${{ matrix.fftw-arch }} /def:libfftw3f-3.def | |
| - name: configure | |
| shell: bash | |
| run: | | |
| mkdir $BUILD_PATH && cd $BUILD_PATH | |
| cmake ${{ matrix.cmake-flags }} -D SC_PATH=$SC_SRC_PATH -D CMAKE_BUILD_TYPE=Release -D SUPERNOVA=ON -D CMAKE_INSTALL_PREFIX=$INSTALL_PATH -D IN_PLACE_BUILD=OFF .. | |
| - name: build | |
| shell: bash | |
| working-directory: ${{ env.BUILD_PATH }} | |
| env: | |
| CMAKE_BUILD_PARALLEL_LEVEL: 4 | |
| run: | | |
| cmake --build . --config Release --target install | |
| - name: compress plugins | |
| shell: bash | |
| working-directory: ${{ env.INSTALL_PATH }} | |
| run: | | |
| if [[ "${{ runner.os }}" == "Windows" ]]; then | |
| 7z a ${{ steps.set-filename.outputs.filename }}.zip -tzip . | |
| else | |
| zip -r ${{ steps.set-filename.outputs.filename }}.zip . | |
| fi | |
| - name: upload artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: ${{ steps.set-filename.outputs.filename }} | |
| path: ${{ env.INSTALL_PATH }}/${{ steps.set-filename.outputs.filename }}.zip | |
| - name: deploy release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| prerelease: true | |
| file: ${{ env.INSTALL_PATH }}/${{ steps.set-filename.outputs.filename }}.zip | |
| tag: ${{ github.ref }} |