Clear cached bits if MAX_PACKET_USERCMDS is exceeded. #346
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: build | |
on: | |
push: | |
branches: [master, ci] | |
pull_request: | |
branches: [master] | |
env: | |
MESON_ARGS: >- | |
--auto-features=enabled | |
--fatal-meson-warnings | |
-Danticheat-server=true | |
-Davcodec=disabled | |
-Dclient-gtv=true | |
-Dpacketdup-hack=true | |
-Dtests=true | |
-Dvariable-fps=true | |
-Dwerror=true | |
MESON_ARGS_WIN: >- | |
-Dsdl2=disabled | |
-Dwayland=disabled | |
-Dwrap_mode=forcefallback | |
-Dx11=disabled | |
MESON_ARGS_LINUX: >- | |
-Dwindows-crash-dumps=disabled | |
-Dwrap_mode=nofallback | |
jobs: | |
mingw: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: ["i686", "x86_64"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: subprojects/packagecache | |
key: ${{ hashFiles('subprojects/*.wrap') }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc-mingw-w64 nasm python3-pip ninja-build | |
sudo python3 -m pip install meson | |
- name: Build | |
run: | | |
meson setup --cross-file=.ci/${{ matrix.arch }}-w64-mingw32.txt \ | |
${{ env.MESON_ARGS }} ${{ env.MESON_ARGS_WIN }} builddir | |
meson compile -C builddir | |
msvc: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
arch: ["x86", "x64"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: subprojects/packagecache | |
key: ${{ hashFiles('subprojects/*.wrap') }} | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ matrix.arch }} | |
- uses: ilammy/setup-nasm@v1 | |
- name: Install dependencies | |
run: pip3 install --no-input meson ninja | |
- name: Build | |
run: | | |
meson setup ${{ env.MESON_ARGS }} ${{ env.MESON_ARGS_WIN }} builddir | |
meson compile -C builddir | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cc: [gcc, clang] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y meson libsdl2-dev libopenal-dev \ | |
libpng-dev libjpeg-dev zlib1g-dev mesa-common-dev \ | |
libcurl4-gnutls-dev libx11-dev libxi-dev \ | |
libwayland-dev wayland-protocols libdecor-0-dev | |
- name: Build | |
run: | | |
meson setup ${{ env.MESON_ARGS }} ${{ env.MESON_ARGS_LINUX }} builddir | |
meson compile -C builddir | |
env: | |
CC: ${{ matrix.cc }} |