2020-11-07 04:09:46 +08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
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 }}
|
|
|
|
|
|
|
|
strategy:
|
2021-02-19 18:04:28 +08:00
|
|
|
fail-fast: false
|
2020-11-07 04:09:46 +08:00
|
|
|
matrix:
|
|
|
|
platform:
|
2022-10-13 11:35:20 +08:00
|
|
|
- { name: Windows VS2019, os: windows-2019 }
|
|
|
|
- { name: Windows VS2022, os: windows-2022 }
|
2022-05-09 21:42:29 +08:00
|
|
|
- { name: Windows VS2022 Clang, os: windows-2022, flags: -T ClangCL }
|
2022-10-13 11:35:20 +08:00
|
|
|
- { name: Linux GCC, os: ubuntu-latest }
|
|
|
|
- { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++, gcovr_options: '--gcov-executable="llvm-cov-$CLANG_VERSION gcov"' }
|
|
|
|
- { name: MacOS, os: macos-latest }
|
|
|
|
- { name: MacOS Xcode, os: macos-latest, flags: -GXcode }
|
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:
|
2022-01-19 02:40:29 +08:00
|
|
|
- platform: { name: Windows VS2022, os: windows-2022 }
|
2021-04-14 09:59:13 +08:00
|
|
|
config: { name: Unity, flags: -DBUILD_SHARED_LIBS=TRUE -DCMAKE_UNITY_BUILD=ON }
|
2022-02-19 01:30:38 +08:00
|
|
|
type: { name: Release }
|
|
|
|
- platform: { name: Windows VS2022, os: windows-2022 }
|
|
|
|
config: { name: Unity, flags: -DBUILD_SHARED_LIBS=TRUE -DCMAKE_UNITY_BUILD=ON }
|
|
|
|
type: { name: Debug, flags: -DCMAKE_BUILD_TYPE=Debug -DSFML_ENABLE_COVERAGE=TRUE }
|
2022-09-27 04:27:30 +08:00
|
|
|
- platform: { name: MacOS, os: macos-latest }
|
2020-11-07 04:09:46 +08:00
|
|
|
config: { name: Frameworks, flags: -DSFML_BUILD_FRAMEWORKS=TRUE }
|
2022-09-27 04:27:30 +08:00
|
|
|
- platform: { name: MacOS, os: macos-latest }
|
2020-11-07 04:09:46 +08:00
|
|
|
config: { name: iOS, flags: -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR }
|
|
|
|
- platform: { name: Android, os: ubuntu-latest }
|
2022-01-19 03:14:10 +08:00
|
|
|
config: { name: x86, flags: -DCMAKE_ANDROID_ARCH_ABI=x86 -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r23b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 }
|
2020-11-07 04:09:46 +08:00
|
|
|
- platform: { name: Android, os: ubuntu-latest }
|
2022-01-19 03:14:10 +08:00
|
|
|
config: { name: armeabi-v7a, flags: -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r23b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 }
|
2022-07-19 14:03:16 +08:00
|
|
|
- platform: { name: Android, os: ubuntu-latest }
|
2022-10-13 11:35:20 +08:00
|
|
|
config: { name: arm64-v8a, flags: -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/android-ndk-r23b/build/cmake/android.toolchain.cmake -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r23b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 -DANDROID_PLATFORM=26 }
|
2022-07-19 14:03:16 +08:00
|
|
|
- platform: { name: Android, os: ubuntu-latest }
|
2022-10-13 11:35:20 +08:00
|
|
|
config: { name: x86_64, flags: -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_SYSTEM_NAME=Android -DSFML_BUILD_TEST_SUITE=FALSE -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/android-ndk-r23b/build/cmake/android.toolchain.cmake -DCMAKE_ANDROID_NDK=$GITHUB_WORKSPACE/android-ndk-r23b -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang -DCMAKE_ANDROID_STL_TYPE=c++_shared -DCMAKE_ANDROID_API=26 -DANDROID_PLATFORM=26 }
|
2022-04-25 21:01:54 +08:00
|
|
|
- platform: { name: Linux GCC, os: ubuntu-latest }
|
|
|
|
config: { name: Static DRM, flags: -DBUILD_SHARED_LIBS=FALSE -DSFML_USE_DRM=TRUE }
|
|
|
|
- platform: { name: Linux GCC, os: ubuntu-latest }
|
|
|
|
config: { name: Shared DRM, flags: -DBUILD_SHARED_LIBS=TRUE -DSFML_USE_DRM=TRUE }
|
2020-11-07 04:09:46 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
2022-10-12 12:45:37 +08:00
|
|
|
uses: actions/checkout@v3
|
2020-11-07 04:09:46 +08:00
|
|
|
|
2022-02-19 01:30:38 +08:00
|
|
|
- name: Install Linux Dependencies
|
2022-02-06 12:38:28 +08:00
|
|
|
if: runner.os == 'Linux'
|
2022-04-25 21:01:54 +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
|
2020-11-07 04:09:46 +08:00
|
|
|
|
|
|
|
- name: Install Android Components
|
|
|
|
if: matrix.platform.name == 'Android'
|
|
|
|
run: |
|
|
|
|
echo "y" | /usr/local/lib/android/sdk/tools/bin/sdkmanager --install "cmake;3.10.2.4988404" --sdk_root=ANDROID_SDK_ROOT
|
|
|
|
sudo ln -sf /usr/local/lib/android/sdk/cmake/3.10.2.4988404/bin/cmake /usr/bin/cmake
|
2022-01-19 03:14:10 +08:00
|
|
|
wget -nv https://dl.google.com/android/repository/android-ndk-r23b-linux.zip -P $GITHUB_WORKSPACE
|
|
|
|
unzip -qq -d $GITHUB_WORKSPACE android-ndk-r23b-linux.zip
|
2020-11-07 04:09:46 +08:00
|
|
|
|
2022-02-19 01:30:38 +08:00
|
|
|
- name: Install Linux Tools
|
|
|
|
if: matrix.type.name == 'Debug' && runner.os == 'Linux'
|
|
|
|
run: |
|
|
|
|
CLANG_VERSION=$(clang++ --version | sed -n 's/.*version \([0-9]\+\)\..*/\1/p')
|
|
|
|
echo "CLANG_VERSION=$CLANG_VERSION" >> $GITHUB_ENV
|
|
|
|
sudo apt-get install gcovr ${{ matrix.platform.name == 'Linux Clang' && 'llvm-$CLANG_VERSION' || '' }}
|
2022-02-06 12:38:28 +08:00
|
|
|
|
2022-02-19 01:30:38 +08:00
|
|
|
- name: Install macOS Tools
|
|
|
|
if: matrix.type.name == 'Debug' && runner.os == 'macOS'
|
|
|
|
run: brew install gcovr
|
2022-02-06 12:38:28 +08:00
|
|
|
|
2022-02-19 01:30:38 +08:00
|
|
|
- name: Install OpenCppCoverage and add to PATH
|
|
|
|
if: matrix.type.name == 'Debug' && runner.os == 'Windows'
|
2022-02-06 12:38:28 +08:00
|
|
|
run: |
|
2022-02-19 01:30:38 +08:00
|
|
|
choco install OpenCppCoverage -y
|
|
|
|
echo "C:\Program Files\OpenCppCoverage" >> $env:GITHUB_PATH
|
2022-02-06 12:38:28 +08:00
|
|
|
|
2022-02-19 01:30:38 +08:00
|
|
|
- name: Configure CMake
|
2022-02-06 12:38:28 +08:00
|
|
|
shell: bash
|
2022-02-19 01:30:38 +08:00
|
|
|
run: cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install -DSFML_BUILD_EXAMPLES=TRUE -DCMAKE_VERBOSE_MAKEFILE=ON -DSFML_BUILD_TEST_SUITE=TRUE ${{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
|
2022-02-06 12:38:28 +08:00
|
|
|
shell: bash
|
2022-02-19 01:30:38 +08:00
|
|
|
run: cmake --build $GITHUB_WORKSPACE/build --config ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }} --target install
|
|
|
|
|
|
|
|
- name: Generate Coverage Report
|
|
|
|
if: matrix.type.name == 'Debug' && runner.os != 'Windows' # Coverage is already generated on Windows when running tests.
|
|
|
|
run: gcovr -r $GITHUB_WORKSPACE -x $GITHUB_WORKSPACE/build/coverage.out -s -f 'src/SFML/.*' -f 'include/SFML/.*' ${{ matrix.platform.gcovr_options }} $GITHUB_WORKSPACE
|
2022-02-06 12:38:28 +08:00
|
|
|
|
|
|
|
- name: Upload Coverage Report to Codecov
|
2022-02-19 01:30:38 +08:00
|
|
|
if: matrix.type.name == 'Debug' && github.repository == 'SFML/SFML' # Disable upload in forks
|
2022-10-17 05:11:57 +08:00
|
|
|
uses: codecov/codecov-action@v3
|
2022-02-06 12:38:28 +08:00
|
|
|
with:
|
|
|
|
directory: ./build
|
|
|
|
files: ./build/coverage.out
|
|
|
|
fail_ci_if_error: true
|
2022-02-18 03:32:28 +08:00
|
|
|
|
2022-09-19 05:24:42 +08:00
|
|
|
- name: Test Install Interface
|
|
|
|
if: matrix.platform.name != 'Android' && matrix.config.name != 'Frameworks' && matrix.config.name != 'iOS' && matrix.config.name != 'Static DRM'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cmake -S $GITHUB_WORKSPACE/test/install -B $GITHUB_WORKSPACE/test/install/build -DSFML_ROOT=$GITHUB_WORKSPACE/install -DCMAKE_VERBOSE_MAKEFILE=ON ${{matrix.platform.flags}} ${{matrix.config.flags}} ${{matrix.type.flags}}
|
|
|
|
cmake --build $GITHUB_WORKSPACE/test/install/build --config ${{ matrix.type.name == 'Debug' && 'Debug' || 'Release' }}
|
|
|
|
|
2022-02-18 03:32:28 +08:00
|
|
|
format:
|
|
|
|
name: Formatting on ${{ matrix.platform.name }}
|
|
|
|
runs-on: ${{ matrix.platform.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- { name: Windows, os: windows-2022, executable: clang-format }
|
|
|
|
- { name: Linux, os: ubuntu-latest, executable: clang-format-12 }
|
|
|
|
- { name: macOS, os: macos-12, executable: clang-format }
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
2022-10-12 12:45:37 +08:00
|
|
|
uses: actions/checkout@v3
|
2022-02-18 03:32:28 +08:00
|
|
|
|
|
|
|
- name: Install macOS Dependencies
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: brew install clang-format
|
|
|
|
|
|
|
|
- name: Format Code
|
|
|
|
shell: bash
|
|
|
|
run: cmake -DCLANG_FORMAT_EXECUTABLE=${{ matrix.platform.executable }} -P $GITHUB_WORKSPACE/cmake/Format.cmake
|
|
|
|
|
|
|
|
- name: Check Formatting
|
|
|
|
run: git diff --exit-code
|