mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +02:00
Use one build file
This commit is contained in:
parent
7311a258c9
commit
ba4956ae28
4 changed files with 13 additions and 52 deletions
|
|
@ -1,9 +1,16 @@
|
||||||
name: Build macOS
|
name: Build
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build macOS
|
name: Build
|
||||||
runs-on: macos-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
22
.github/workflows/build_linux.yaml
vendored
22
.github/workflows/build_linux.yaml
vendored
|
|
@ -1,22 +0,0 @@
|
||||||
name: Build Linux
|
|
||||||
on: [push]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build Linux
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
- name: "Run script"
|
|
||||||
run: |
|
|
||||||
./ci/build.sh
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
APIKEY: ${{ secrets.APIKEY }}
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: Binaries
|
|
||||||
path: ci/bin
|
|
||||||
retention-days: 30
|
|
||||||
22
.github/workflows/build_windows.yaml
vendored
22
.github/workflows/build_windows.yaml
vendored
|
|
@ -1,22 +0,0 @@
|
||||||
name: Build Windows
|
|
||||||
on: [push]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build Windows
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
- name: "Run script"
|
|
||||||
run: |
|
|
||||||
./ci/build.sh
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
APIKEY: ${{ secrets.APIKEY }}
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: Binaries
|
|
||||||
path: ci/bin
|
|
||||||
retention-days: 30
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
# Wavetable
|
# Wavetable
|
||||||
Wavetable VST / AU plugin
|
Wavetable VST / AU plugin
|
||||||
|
|
||||||

|

|
||||||

|
|
||||||

|
|
||||||
|
|
||||||
A 4 oscillator subtractive synth with 2 filters and flexible modulation options.
|
A 2 oscillator wavetable synth with flexible modulation options.
|
||||||
|
|
||||||
https://socalabs.com/synths/Wavetable/
|
https://socalabs.com/synths/Wavetable/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue