ZamTube: Make insane mode less harsh, adds more bass by fixing gridleak #20
This file contains 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: build | |
on: | |
push: | |
jobs: | |
linux: | |
strategy: | |
matrix: | |
target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: distrho/dpf-makefile-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
pawpaw: true | |
macos: | |
strategy: | |
matrix: | |
target: [macos-intel, macos-universal] | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: distrho/dpf-makefile-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
pawpaw: true | |
windows: | |
strategy: | |
matrix: | |
target: [win32, win64] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: distrho/dpf-makefile-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
pawpaw: true | |
pluginval: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: distrho/dpf-makefile-action@v1 | |
with: | |
target: pluginval | |
pawpaw: true |