Skip to content

Did more work on the bindings between the audio and view #32

Did more work on the bindings between the audio and view

Did more work on the bindings between the audio and view #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install QT
uses: jurplel/[email protected]
with:
version: '6.2.0'
- name: Install SDL2
uses: libsdl-org/setup-sdl@main
with:
version: 3-head
version-sdl-mixer: 3-head
- name: Install FFmpeg
uses: AnimMouse/setup-ffmpeg@v1
- name: Install FFmpeg dependencies
run: |
sudo apt-get install -y libavdevice-dev libavfilter-dev libavformat-dev libavcodec-dev libswresample-dev libswscale-dev libavutil-dev
- name: Configure project
run: |
mkdir build
cd build
cmake ..
- name: Build project
run: |
cd build
make -j ${nproc}