Skip to content

ready to properly implement floatingControll, SDL2 will be the backen… #18

ready to properly implement floatingControll, SDL2 will be the backen…

ready to properly implement floatingControll, SDL2 will be the backen… #18

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@v1
- name: Install SDL image and mixer libraries
run: sudo apt-get install -y libsdl2-image-dev libsdl2-mixer-dev
- 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}