2020-11-07 04:09:46 +08:00
name : CI
2023-01-31 06:10:18 +08:00
on : [ push, pull_request, workflow_dispatch]
2020-11-07 04:09:46 +08:00
2023-07-09 10:53:32 +08:00
concurrency :
group : environment-${{github.ref}}
cancel-in-progress : true
2023-03-26 20:21:21 +08:00
env :
2023-04-12 07:37:05 +08:00
DISPLAY : ":99" # Display number to use for the X server
2023-03-26 20:21:21 +08:00
GALLIUM_DRIVER : llvmpipe # Use Mesa 3D software OpenGL renderer
2023-10-02 12:36:34 +08:00
defaults :
run :
shell : bash
2020-11-07 04:09:46 +08:00
jobs :
build :
2022-02-19 01:30:38 +08:00
name : ${{ matrix.platform.name }} ${{ matrix.config.name }} ${{ matrix.type.name }}
2020-11-07 04:09:46 +08:00
runs-on : ${{ matrix.platform.os }}
2023-10-03 11:52:22 +08:00
env :
CMAKE_CXX_COMPILER_LAUNCHER : ccache # Use ccache to cache C++ compiler output
2020-11-07 04:09:46 +08:00
strategy :
2021-02-19 18:04:28 +08:00
fail-fast : false
2020-11-07 04:09:46 +08:00
matrix :
platform :
2023-10-05 06:05:50 +08:00
- { name: Windows VS2019 x86, os: windows-2019, flags : -DSFML_USE_MESA3D=TRUE -GNinja }
- { name: Windows VS2019 x64, os: windows-2019, flags : -DSFML_USE_MESA3D=TRUE -GNinja }
- { name: Windows VS2022 x86, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -GNinja }
- { name: Windows VS2022 x64, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -GNinja }
- { name: Windows VS2022 ClangCL MSBuild, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -T ClangCL } # ninja doesn't support specifying the toolset, so use the ClangCL toolset to test building with MSBuild as well
- { name: Windows VS2022 OpenGL ES, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -DSFML_OPENGL_ES=ON -GNinja }
- { name: Windows VS2022 Unity, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -DCMAKE_UNITY_BUILD=ON -GNinja }
2023-11-06 23:35:27 +08:00
- { name: Windows LLVM/Clang, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -DCMAKE_CXX_COMPILER=clang++ -GNinja }
- { name: Windows MinGW, os: windows-2022, flags : -DSFML_USE_MESA3D=TRUE -DCMAKE_CXX_COMPILER=g++ -GNinja }
2023-10-05 06:05:50 +08:00
- { name: Linux GCC, os: ubuntu-22.04, flags : -DSFML_RUN_DISPLAY_TESTS=ON -GNinja }
2023-11-06 23:35:27 +08:00
- { name: Linux Clang, os: ubuntu-22.04, flags: -DCMAKE_CXX_COMPILER=clang++ -DSFML_RUN_DISPLAY_TESTS=ON -GNinja , gcovr_options : '--gcov-executable="llvm-cov-$CLANG_VERSION gcov"' }
2023-10-05 06:05:50 +08:00
- { name: Linux GCC DRM, os: ubuntu-22.04, flags : -DSFML_USE_DRM=ON -DSFML_RUN_DISPLAY_TESTS=OFF -GNinja }
2024-02-16 05:57:34 +08:00
- { name: Linux GCC OpenGL ES, os: ubuntu-22.04, flags : -DSFML_OPENGL_ES=ON -DSFML_RUN_DISPLAY_TESTS=OFF -GNinja }
2024-02-05 01:12:59 +08:00
- { name: macOS x64, os: macos-12, flags : -GNinja }
- { name: macOS x64 Xcode, os: macos-12, flags : -GXcode }
- { name: macOS arm64, os: macos-14, flags : -GNinja }
2023-10-05 06:05:50 +08:00
- { name: iOS, os: macos-12, flags : -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 }
- { name: iOS Xcode, os: macos-12, flags : -DCMAKE_SYSTEM_NAME=iOS -GXcode -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED=NO }
2020-11-07 04:09:46 +08:00
config :
2022-02-19 01:30:38 +08:00
- { name: Shared, flags : -DBUILD_SHARED_LIBS=TRUE }
- { name: Static, flags : -DBUILD_SHARED_LIBS=FALSE }
type :
- { name : Release }
- { name: Debug, flags : -DCMAKE_BUILD_TYPE=Debug -DSFML_ENABLE_COVERAGE=TRUE }
2020-11-07 04:09:46 +08:00
include :
2024-02-09 01:21:33 +08:00
- platform : { name: Windows VS2022 x64, os : windows-2022 }
config : { name: Static with PCH (MSVC), flags : -DSFML_USE_MESA3D=TRUE -GNinja -DBUILD_SHARED_LIBS=FALSE -DSFML_ENABLE_PCH=1 }
- platform : { name: Linux GCC, os : ubuntu-22.04 }
config : { name: Static with PCH (GCC), flags : -DSFML_RUN_DISPLAY_TESTS=ON -GNinja -DCMAKE_CXX_COMPILER=g++ -DBUILD_SHARED_LIBS=FALSE -DSFML_ENABLE_PCH=1 }
- platform : { name: Linux Clang, os : ubuntu-22.04 }
config : { name: Static with PCH (Clang), flags : -DSFML_RUN_DISPLAY_TESTS=ON -GNinja -DCMAKE_CXX_COMPILER=clang++ -DBUILD_SHARED_LIBS=FALSE -DSFML_ENABLE_PCH=1 }
2023-09-26 23:03:38 +08:00
- platform : { name: Windows MinGW, os : windows-2022 }
2023-11-06 23:35:27 +08:00
config : { name: Static Standard Libraries, flags : -GNinja -DSFML_USE_MESA3D=TRUE -DCMAKE_CXX_COMPILER=g++ -DSFML_USE_STATIC_STD_LIBS=TRUE }
2024-02-09 01:21:33 +08:00
- platform : { name: Windows MinGW, os : windows-2022 }
config : { name: Static with PCH (GCC), flags : -GNinja -DSFML_USE_MESA3D=TRUE -DCMAKE_CXX_COMPILER=g++ -DBUILD_SHARED_LIBS=FALSE -DSFML_ENABLE_PCH=1 }
2023-02-12 12:49:05 +08:00
- platform : { name: macOS, os : macos-12 }
2023-02-17 04:11:51 +08:00
config : { name: Frameworks, flags : -GNinja -DSFML_BUILD_FRAMEWORKS=TRUE -DBUILD_SHARED_LIBS=TRUE }
2023-07-09 04:01:49 +08:00
- platform : { name: Android, os : ubuntu-22.04 }
2023-11-11 19:27:04 +08:00
config : { name: x86 (API 21), flags: -GNinja -DCMAKE_ANDROID_ARCH_ABI=x86 -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=21 -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$ANDROID_SDK_ROOT/ndk/26.1.10909125 -DBUILD_SHARED_LIBS=TRUE -DCMAKE_ANDROID_STL_TYPE=c++_shared, arch: x86, api : 21 }
type : { name : Release }
2023-07-09 04:01:49 +08:00
- platform : { name: Android, os : ubuntu-22.04 }
2023-11-11 19:27:04 +08:00
config : { name: x86_64 (API 24), flags: -GNinja -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=24 -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$ANDROID_SDK_ROOT/ndk/26.1.10909125 -DBUILD_SHARED_LIBS=TRUE -DCMAKE_ANDROID_STL_TYPE=c++_shared, arch: x86_64, api : 24 }
type : { name : Release }
- platform : { name: Android, os : ubuntu-22.04 }
config : { name: armeabi-v7a (API 29), flags: -GNinja -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=29 -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$ANDROID_SDK_ROOT/ndk/26.1.10909125 -DBUILD_SHARED_LIBS=TRUE -DCMAKE_ANDROID_STL_TYPE=c++_shared, arch: armeabi-v7a, api : 29 }
type : { name: Debug, flags : -DCMAKE_BUILD_TYPE=Debug }
- platform : { name: Android, os : ubuntu-22.04 }
config : { name: arm64-v8a (API 33), flags: -GNinja -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=33 -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$ANDROID_SDK_ROOT/ndk/26.1.10909125 -DBUILD_SHARED_LIBS=TRUE -DCMAKE_ANDROID_STL_TYPE=c++_shared, arch: arm64-v8a, api : 33 }
type : { name: Debug, flags : -DCMAKE_BUILD_TYPE=Debug }
2023-02-12 12:49:05 +08:00
- platform : { name: macOS , os : macos-12 }
2023-07-10 13:46:56 +08:00
config : { name: System Deps, flags : -GNinja -DBUILD_SHARED_LIBS=TRUE -DSFML_USE_SYSTEM_DEPS=TRUE }
2023-11-11 19:27:04 +08:00
2024-02-09 01:21:33 +08:00
2020-11-07 04:09:46 +08:00
steps :
- name : Checkout Code
2024-02-16 05:31:31 +08:00
uses : actions/checkout@v4
2020-11-07 04:09:46 +08:00
2023-10-05 06:05:50 +08:00
- name : Set Visual Studio Architecture
if : contains(matrix.platform.name, 'Windows VS') && !contains(matrix.platform.name, 'MSBuild')
uses : ilammy/msvc-dev-cmd@v1
with :
arch : ${{ contains(matrix.platform.name, 'x86') && 'x86' || 'x64' }}
2023-11-05 02:59:47 +08:00
# Although the CMake configuration will run with 3.24 on Windows and 3.22
# elsewhere, we install 3.25 on Windows in order to support specifying
# CMAKE_MSVC_DEBUG_INFORMATION_FORMAT which allows CCache to cache MSVC object
# files, see: https://cmake.org/cmake/help/latest/release/3.25.html#variables
2023-10-03 08:42:53 +08:00
- name : Get CMake and Ninja
uses : lukka/get-cmake@latest
with :
2023-11-05 02:59:47 +08:00
cmakeVersion : ${{ runner.os == 'Windows' && '3.25' || '3.22' }}
2023-10-03 08:42:53 +08:00
ninjaVersion : latest
2023-10-03 11:52:22 +08:00
- name : Install Linux Dependencies and Tools
2022-02-06 12:38:28 +08:00
if : runner.os == 'Linux'
2023-10-03 11:52:22 +08:00
run : |
CLANG_VERSION=$(clang++ --version | sed -n 's/.*version \([0-9]\+\)\..*/\1/p')
echo "CLANG_VERSION=$CLANG_VERSION" >> $GITHUB_ENV
sudo apt-get update && sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox ccache gcovr ${{ matrix.platform.name == 'Linux Clang' && 'llvm-$CLANG_VERSION' || '' }}
2020-11-07 04:09:46 +08:00
- name : Install Android Components
if : matrix.platform.name == 'Android'
run : |
2024-01-15 05:28:57 +08:00
echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "build-tools;33.0.2"
echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;26.1.10909125"
2020-11-07 04:09:46 +08:00
2022-02-19 01:30:38 +08:00
- name : Install macOS Tools
2023-01-29 05:08:54 +08:00
if : runner.os == 'macOS'
2023-03-24 04:13:52 +08:00
run : |
2023-07-04 13:57:47 +08:00
# Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612
# brew update
2023-10-03 11:52:22 +08:00
brew install gcovr ccache || true
# In addition to installing a known working version of CCache, this action also takes care of saving and restoring the cache for us
# Additionally it outputs information at the end of each job that helps us to verify if the cache is working properly
- name : Setup CCache
2024-02-21 03:47:35 +08:00
uses : hendrikmuhs/ccache-action@v1.2.12
2023-10-03 11:52:22 +08:00
with :
verbose : 2
key : ${{ matrix.platform.name }}-${{ matrix.config.name }}-${{ matrix.type.name }}
2023-10-03 08:42:53 +08:00
2024-04-12 02:54:19 +08:00
- name : Install Gcovr for MinGW
if : matrix.type.name == 'Debug' && contains(matrix.platform.name, 'MinGW')
uses : threeal/pipx-install-action@v1.0.0
with :
packages : gcovr
2023-10-03 08:42:53 +08:00
- name : Cache OpenCppCoverage
if : matrix.type.name == 'Debug' && runner.os == 'Windows'
id : opencppcoverage-cache
2024-02-21 03:47:35 +08:00
uses : actions/cache@v4
2023-10-03 08:42:53 +08:00
with :
path : C:\Program Files\OpenCppCoverage
key : opencppcoverage
2022-02-06 12:38:28 +08:00
2023-10-03 08:42:53 +08:00
- name : Install OpenCppCoverage
2024-02-21 03:47:35 +08:00
uses : nick-fields/retry@v3
2023-10-03 08:42:53 +08:00
if : matrix.type.name == 'Debug' && runner.os == 'Windows' && steps.opencppcoverage-cache.outputs.cache-hit != 'true'
2022-11-23 15:35:31 +08:00
with :
max_attempts : 10
timeout_minutes : 3
2023-10-03 08:42:53 +08:00
command : choco install OpenCppCoverage -y
2022-02-06 12:38:28 +08:00
2023-10-04 01:54:55 +08:00
- name : Cache MinGW
2023-10-02 13:17:36 +08:00
if : matrix.platform.name == 'Windows MinGW'
2023-10-04 01:54:55 +08:00
id : mingw-cache
2024-02-21 03:47:35 +08:00
uses : actions/cache@v4
2023-10-04 01:54:55 +08:00
with :
path : "C:\\Program Files\\mingw64"
key : winlibs-x86_64-posix-seh-gcc-12.2.0-llvm-16.0.0-mingw-w64msvcrt-10.0.0-r5
- name : Install MinGW
if : matrix.platform.name == 'Windows MinGW' && steps.mingw-cache.outputs.cache-hit != 'true'
2023-10-02 13:17:36 +08:00
run : |
2023-10-04 01:54:55 +08:00
curl -Lo mingw64.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/12.2.0-16.0.0-10.0.0-msvcrt-r5/winlibs-x86_64-posix-seh-gcc-12.2.0-llvm-16.0.0-mingw-w64msvcrt-10.0.0-r5.zip
unzip -qq -d "C:\Program Files" mingw64.zip
2023-10-02 13:17:36 +08:00
2023-10-03 11:52:22 +08:00
- name : Add OpenCppCoverage and MinGW to PATH and remove MinGW-supplied CCache
2023-10-03 08:42:53 +08:00
if : runner.os == 'Windows'
run : |
2023-10-02 12:36:34 +08:00
echo "C:\Program Files\OpenCppCoverage" >> $GITHUB_PATH
echo "C:\Program Files\mingw64\bin" >> $GITHUB_PATH
2023-10-03 11:52:22 +08:00
rm -f "C:\Program Files\mingw64\bin\ccache.exe"
echo "Using $(which ccache)"
ccache --version
2023-10-03 08:42:53 +08:00
2022-02-19 01:30:38 +08:00
- name : Configure CMake
2023-02-22 07:25:55 +08:00
run : cmake --preset dev -DCMAKE_VERBOSE_MAKEFILE=ON ${{matrix.platform.flags}} ${{matrix.config.flags}} ${{matrix.type.flags}}
2022-02-06 12:38:28 +08:00
2022-02-19 01:30:38 +08:00
- name : Build
2023-08-10 10:29:42 +08:00
run : cmake --build build --config ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }} --target install
2023-09-20 01:17:29 +08:00
2023-11-11 19:27:04 +08:00
- name : Build Android example
if : matrix.platform.name == 'Android'
run : examples/android/gradlew ${{ matrix.type.name == 'Debug' && 'assembleDebug' || 'assembleRelease' }} -p examples/android -P ARCH_ABI=${{matrix.config.arch}} -P MIN_SDK=${{matrix.config.api}}
2023-04-12 07:37:05 +08:00
- name : Prepare Test
run : |
set -e
# Start up Xvfb and fluxbox to host display tests
if [ "${{ runner.os }}" == "Linux" ]; then
Xvfb $DISPLAY -screen 0 1920x1080x24 &
sleep 5
fluxbox > /dev/null 2>&1 &
sleep 5
fi
# Make sure the build/bin directory exists so that the find command does not fail if no executables are built
2023-08-10 10:29:42 +08:00
mkdir -p build/bin
2023-09-19 10:51:33 +08:00
# Make use of a test to print OpenGL vendor/renderer/version info to the console
find build/bin -name test-sfml-window -or -name test-sfml-window.exe -exec sh -c "{} *sf::Context* --section=\"Version String\" --success | grep OpenGL" \;
2023-03-15 01:51:22 +08:00
- name : Test
2024-04-12 02:54:19 +08:00
if : runner.os == 'Windows' && !contains(matrix.platform.name, 'MinGW')
2023-09-19 10:51:33 +08:00
run : cmake --build build --target runtests --config ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }}
- name : Test
2024-04-12 02:54:19 +08:00
if : runner.os != 'Windows' || contains(matrix.platform.name, 'MinGW')
2023-09-19 10:51:33 +08:00
run : |
ctest --test-dir build --output-on-failure -C ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }} --repeat until-pass:3
# Run gcovr to extract coverage information from the test run
if [ "${{ matrix.type.name }}" == "Debug" ]; then
gcovr -r $GITHUB_WORKSPACE -x build/coverage.out -s -f 'src/SFML/.*' -f 'include/SFML/.*' ${{ matrix.platform.gcovr_options }} $GITHUB_WORKSPACE
fi
2022-02-06 12:38:28 +08:00
2024-04-11 03:37:45 +08:00
- name : Upload Coverage Report to Coveralls
2023-03-24 09:18:46 +08:00
if : matrix.type.name == 'Debug' && github.repository == 'SFML/SFML' # Disable upload in forks
2024-04-11 03:37:45 +08:00
uses : coverallsapp/github-action@v2
2022-02-06 12:38:28 +08:00
with :
2024-04-11 03:37:45 +08:00
file : ./build/coverage.out
flag-name : ${{ matrix.platform.name }} ${{ matrix.config.name }} ${{ matrix.type.name }}
parallel : true
allow-empty : true
base-path : ${{ github.workspace }}
2022-02-18 03:32:28 +08:00
2022-09-19 05:24:42 +08:00
- name : Test Install Interface
2023-04-04 05:36:33 +08:00
if : matrix.platform.name != 'Android'
2022-09-19 05:24:42 +08:00
run : |
2023-08-10 10:29:42 +08:00
cmake -S test/install -B test/install/build -DSFML_ROOT=build/install -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }} ${{matrix.platform.flags}} ${{matrix.config.flags}} ${{matrix.type.flags}}
cmake --build test/install/build --config ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }}
2022-09-19 05:24:42 +08:00
2024-04-11 03:37:45 +08:00
coverage :
name : Finalize Coverage Upload
needs : build
runs-on : ubuntu-22.04
2024-04-12 04:08:52 +08:00
if : github.repository == 'SFML/SFML' # Disable upload in forks
2024-04-11 03:37:45 +08:00
steps :
- name : Coveralls Finished
uses : coverallsapp/github-action@v2
with :
parallel-finished : true
2022-02-18 03:32:28 +08:00
format :
2023-05-21 05:46:47 +08:00
name : Formatting
2022-11-26 02:39:06 +08:00
runs-on : ubuntu-22.04
2022-02-18 03:32:28 +08:00
strategy :
fail-fast : false
steps :
- name : Checkout Code
2024-02-16 05:31:31 +08:00
uses : actions/checkout@v4
2022-02-18 03:32:28 +08:00
- name : Format Code
2023-08-10 10:29:42 +08:00
run : cmake -DCLANG_FORMAT_EXECUTABLE=clang-format-14 -P cmake/Format.cmake
2022-02-18 03:32:28 +08:00
- name : Check Formatting
run : git diff --exit-code
2022-10-17 04:30:13 +08:00
tidy :
name : Analyzing on ${{ matrix.platform.name }}
runs-on : ${{ matrix.platform.os }}
strategy :
fail-fast : false
matrix :
platform :
2023-10-27 05:21:10 +08:00
- { name: Windows, os: windows-2022, flags : -GNinja }
- { name: Linux, os : ubuntu-22.04 }
- { name: Linux DRM, os: ubuntu-22.04, flags : -DSFML_USE_DRM=TRUE }
- { name: Linux OpenGL ES, os: ubuntu-22.04, flags : -DSFML_OPENGL_ES=ON }
- { name: macOS, os : macos-12 }
- { name: iOS, os: macos-12, flags : -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 }
2023-11-11 19:27:04 +08:00
- { name: Android, os: ubuntu-22.04, flags : -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=21 -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$ANDROID_NDK -DCMAKE_ANDROID_STL_TYPE=c++_shared }
2022-10-17 04:30:13 +08:00
steps :
- name : Checkout Code
2024-02-16 05:31:31 +08:00
uses : actions/checkout@v4
2022-10-17 04:30:13 +08:00
2023-10-03 08:42:53 +08:00
- name : Get CMake and Ninja
uses : lukka/get-cmake@latest
with :
cmakeVersion : latest
ninjaVersion : latest
2023-01-14 06:56:42 +08:00
- name : Install Windows Dependencies
if : runner.os == 'Windows'
2023-09-21 07:28:30 +08:00
run : |
curl.exe -o run-clang-tidy https://raw.githubusercontent.com/llvm/llvm-project/llvmorg-15.0.7/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py
2023-01-14 06:56:42 +08:00
2022-10-17 04:30:13 +08:00
- name : Install Linux Dependencies
if : runner.os == 'Linux'
2023-01-13 12:49:10 +08:00
run : sudo apt-get update && sudo apt-get install libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev
2022-10-17 04:30:13 +08:00
- name : Install macOS Dependencies
if : runner.os == 'macOS'
run : |
2023-07-04 13:57:47 +08:00
# Do not run updates until GitHub has fixed all the issues: https://github.com/orgs/Homebrew/discussions/4612
# brew update
2023-04-09 05:22:38 +08:00
brew install llvm || true
2022-10-17 04:30:13 +08:00
echo /usr/local/opt/llvm/bin >> $GITHUB_PATH
- name : Configure
2023-11-06 23:35:27 +08:00
run : cmake --preset dev -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_UNITY_BUILD=ON ${{matrix.platform.flags}}
2022-10-17 04:30:13 +08:00
- name : Analyze Code
2023-08-10 10:29:42 +08:00
run : cmake --build build --target tidy
2023-10-27 07:28:40 +08:00
sanitize :
name : Sanitizing on ${{ matrix.platform.name }}
runs-on : ${{ matrix.platform.os }}
strategy :
fail-fast : false
matrix :
platform :
- { name: Linux, os: ubuntu-22.04, flags : -DSFML_RUN_DISPLAY_TESTS=ON }
- { name: Linux DRM, os: ubuntu-22.04, flags : -DSFML_RUN_DISPLAY_TESTS=OFF -DSFML_USE_DRM=ON }
2024-02-16 05:57:34 +08:00
- { name: Linux GCC OpenGL ES, os: ubuntu-22.04, flags : -DSFML_RUN_DISPLAY_TESTS=OFF -DSFML_OPENGL_ES=ON }
2023-10-27 07:28:40 +08:00
steps :
- name : Checkout Code
2024-02-16 05:31:31 +08:00
uses : actions/checkout@v4
2023-10-27 07:28:40 +08:00
- name : Get CMake and Ninja
uses : lukka/get-cmake@latest
with :
cmakeVersion : latest
ninjaVersion : latest
- name : Install Linux Dependencies
if : runner.os == 'Linux'
run : sudo apt-get update && sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox
- name : Configure
2023-11-06 23:35:27 +08:00
run : cmake --preset dev -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=clang++ -DSFML_BUILD_EXAMPLES=OFF -DSFML_ENABLE_SANITIZERS=ON ${{matrix.platform.flags}}
2023-10-27 07:28:40 +08:00
- name : Build
run : cmake --build build
- name : Prepare Test
run : |
set -e
# Start up Xvfb and fluxbox to host display tests
if [ "${{ runner.os }}" == "Linux" ]; then
Xvfb $DISPLAY -screen 0 1920x1080x24 &
sleep 5
fluxbox > /dev/null 2>&1 &
sleep 5
fi
- name : Test
run : ctest --test-dir build --output-on-failure