Use integer comparisons in MAX/MINI to avoid issues with denormals. #1592
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 Linux ARM64 | |
on: [push, pull_request] | |
jobs: | |
build_linux_arm64: | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install libcurl4-openssl-dev libgl1-mesa-dev libglu1-mesa-dev libalut-dev libevdev-dev qt6-base-dev | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Force Fetch Git Tags | |
run: git fetch --tags --force | |
- name: Generate CMake Project | |
run: | | |
mkdir build | |
cd build | |
cmake .. -G"Unix Makefiles" -DCMAKE_INSTALL_PREFIX=./appdir/usr -DBUILD_LIBRETRO_CORE=yes | |
- name: Build | |
run: | | |
cd build | |
cmake --build . --config Release -j $(nproc) | |
- name: Run Tests | |
run: | | |
cd build | |
ctest -C Release |