mirror of
https://github.com/mikeoliphant/neural-amp-modeler-lv2.git
synced 2026-05-07 04:00:09 +02:00
Create build.yml
This commit is contained in:
@@ -0,0 +1,29 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3.3.0
|
||||||
|
with:
|
||||||
|
path: neural-amp-modeler-lv2
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
build-ubuntu:
|
||||||
|
name: Build Ubuntu
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Build Plugin
|
||||||
|
working-directory: ${{github.workspace}}/build
|
||||||
|
env:
|
||||||
|
CXX: clang++
|
||||||
|
run: |
|
||||||
|
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||||
|
cmake --build . --config Release -j4
|
||||||
|
|
||||||
Reference in New Issue
Block a user