Real-time MIDI playback using RtMidi #299
Workflow file for this run
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: Linux Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build-type: ["Debug", "Release"] | |
name: Linux ${{ matrix.build-type }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Deps | |
run: | | |
sudo apt update | |
sudo apt install libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev librtmidi-dev | |
- name: Build | |
run: | | |
mkdir -p out/${{ matrix.build-type }} | |
cd out/${{ matrix.build-type }} | |
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ../../ | |
make -j4 |