mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
f34a4e7c95
- Updates all workflow actions to the latest major version where possible. - Updated GCC to version 10 on Ubuntu. - Update Clang to version 14 on Ubuntu. - Removed CodeQL as it turned out to be completely useless. - Updated validation script. - Updated build script
111 lines
3.3 KiB
YAML
111 lines
3.3 KiB
YAML
name: Validation
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
concurrency:
|
|
group: validate-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CACHE_VERSION: 2
|
|
|
|
jobs:
|
|
validation:
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
runner: [ "windows-2022", "windows-2019", "ubuntu-22.04", "ubuntu-20.04" ]
|
|
CMAKE_BUILD_TYPE: [ "Debug", "Release" ]
|
|
include:
|
|
- runner: "windows-2022"
|
|
id: "windows-2022-validate"
|
|
name: "Windows 11"
|
|
CMAKE_SYSTEM_VERSION: "10.0.18362.0"
|
|
CMAKE_GENERATOR: "Visual Studio 17 2022"
|
|
CMAKE_GENERATOR_PLATFORM: "x64"
|
|
- runner: "windows-2019"
|
|
id: "windows-2019-validate"
|
|
name: "Windows 10"
|
|
CMAKE_SYSTEM_VERSION: "10.0.18362.0"
|
|
CMAKE_GENERATOR: "Visual Studio 16 2019"
|
|
CMAKE_GENERATOR_PLATFORM: "x64"
|
|
- runner: "ubuntu-22.04"
|
|
id: "linux-22.04-validate"
|
|
name: "Ubuntu 22.04"
|
|
CMAKE_GENERATOR: "Ninja"
|
|
- runner: "ubuntu-20.04"
|
|
id: "linux-20.04-validate"
|
|
name: "Ubuntu 20.04"
|
|
CMAKE_GENERATOR: "Ninja"
|
|
name: "${{ matrix.name }} (${{ matrix.CMAKE_BUILD_TYPE }})"
|
|
runs-on: ${{ matrix.runner }}
|
|
env:
|
|
CC: clang
|
|
CXX: clang++
|
|
CMAKE_BUILD_TYPE: ${{ matrix.CMAKE_BUILD_TYPE }}
|
|
CMAKE_SYSTEM_VERSION: ${{ matrix.CMAKE_SYSTEM_VERSION }}
|
|
CMAKE_GENERATOR: ${{ matrix.CMAKE_GENERATOR }}
|
|
CMAKE_GENERATOR_PLATFORM: ${{ matrix.CMAKE_GENERATOR_PLATFORM }}
|
|
steps:
|
|
- name: "Clone"
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
|
|
- name: "Prerequisites: Apt-Get"
|
|
if: startsWith( matrix.id, 'linux' )
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get -qq update
|
|
sudo apt-get purge libjpeg9-dev:amd64 libjpeg8-dev:amd64 libjpeg-turbo8-dev:amd64
|
|
sudo apt-get install \
|
|
build-essential \
|
|
checkinstall \
|
|
pkg-config \
|
|
cmake \
|
|
ninja-build \
|
|
git \
|
|
qtbase5-dev qtbase5-private-dev libqt5svg5-dev \
|
|
libavcodec-dev libavdevice-dev libavfilter-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev \
|
|
libcurl4-openssl-dev
|
|
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
|
|
|
- name: "Dependencies: Cache"
|
|
if: github.event_name != 'pull_request'
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
build/temp/autodeps
|
|
key: autodeps-${{ matrix.id }}-${{ env.CACHE_VERSION }}
|
|
|
|
- name: "StreamFX: Configure"
|
|
shell: bash
|
|
run: |
|
|
cmake -H. -B"build/temp" \
|
|
-DCMAKE_BUILD_TYPE=${{ matrix.CMAKE_BUILD_TYPE }} \
|
|
-DENABLE_CLANG=TRUE
|
|
|
|
- name: "StreamFX: clang-tidy"
|
|
continue-on-error: true
|
|
shell: bash
|
|
run: |
|
|
cmake --build "build/temp" --config ${{ matrix.CMAKE_BUILD_TYPE }} --target StreamFX_clang-tidy
|
|
|
|
- name: "StreamFX: clang-format"
|
|
shell: bash
|
|
run: |
|
|
cmake --build "build/temp" --config ${{ matrix.CMAKE_BUILD_TYPE }} --target StreamFX_clang-format
|
|
|
|
- name: "Validate Formatting"
|
|
shell: bash
|
|
run: |
|
|
git --no-pager diff --patch --minimal HEAD --
|
|
git update-index --refresh
|
|
git diff-index --quiet HEAD --
|