woz2nib: Fix bit shift operation by casting it to uint8_t #267
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: Feature matrix | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
feature: ["-DWITH_SDL=OFF", "-DWITH_TTS=OFF", "-DWITH_BABEL=OFF", "-DSOUND=QT", "-DWITH_KDE=ON", "-DJPEGLIB=IJG"] | |
runs-on: ubuntu-22.04 | |
container: | |
image: amd64/ubuntu:22.04 | |
options: --privileged | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update packages | |
run: apt update | |
- name: Install packages | |
run: DEBIAN_FRONTEND=noninteractive apt install -y | |
build-essential | |
cmake | |
extra-cmake-modules | |
git | |
libfluidsynth-dev | |
libfmt-dev | |
libfontconfig1-dev | |
libfreetype-dev | |
libjpeg-dev | |
libkf5kio-dev | |
libkf5service-dev | |
libmpg123-dev | |
libopenmpt-dev | |
libsdl2-mixer-dev | |
libsndfile-dev | |
libspeechd-dev | |
libturbojpeg0-dev | |
qtbase5-dev | |
qtbase5-dev-tools | |
qtmultimedia5-dev | |
- name: Configure | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/usr ${{ matrix.feature }} -DWITH_INTERPRETERS=OFF -DWITH_LAUNCHER=OFF -DQT_VERSION=5 | |
- name: Build | |
run: | | |
cd build | |
make -j`nproc` | |
make install DESTDIR=/tmp/gargoyle |