Files
neural-amp-modeler-lv2/.github/workflows/build.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 12: cannot unmarshal !!seq into model.Job
2023-04-10 16:54:54 -07:00

30 lines
486 B
YAML

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