Don't use BlitARGBto555PixelAlpha() for SDL_PIXELFORMAT_ARGB1555 #5489
This file contains hidden or 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 (C/P Actions) | |
on: [push, pull_request] | |
jobs: | |
freebsd: | |
runs-on: ubuntu-latest | |
name: FreeBSD | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
uses: cross-platform-actions/action@v0.24.0 | |
with: | |
operating_system: freebsd | |
version: '13.3' | |
shell: bash | |
run: | | |
sudo pkg update | |
sudo pkg install -y \ | |
gmake \ | |
pkgconf \ | |
libXcursor \ | |
libXext \ | |
libXinerama \ | |
libXi \ | |
libXfixes \ | |
libXrandr \ | |
libXScrnSaver \ | |
libXxf86vm \ | |
wayland \ | |
wayland-protocols \ | |
libxkbcommon \ | |
mesa-libs \ | |
libglvnd \ | |
evdev-proto \ | |
libinotify \ | |
alsa-lib \ | |
jackit \ | |
pipewire \ | |
pulseaudio \ | |
sndio \ | |
dbus \ | |
zh-fcitx \ | |
ibus \ | |
libudev-devd | |
mkdir build_autotools | |
export CPPFLAGS="-I/usr/local/include" | |
export LDFLAGS="-L/usr/local/lib" | |
(cd build_autotools && ../configure --disable-static) | |
gmake -C build_autotools -j`sysctl -n hw.ncpu` V=1 |