win-capture: get-graphics-offsets support for UWP/AppContainer #48
Workflow file for this run
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' | |
on: | |
push: | |
paths-ignore: ['**.md'] | |
branches: | |
- master | |
- 'release/**' | |
tags: ['*'] | |
pull_request: | |
paths-ignore: ['**.md'] | |
branches: [master] | |
env: | |
CACHE_REVISION: '006' | |
DEPS_VERSION_MAC: '2023-03-20' | |
DEPS_HASH_MAC_X86_64: 'bd4d3866c2e4b630410ff29b3f31a2553844af60b30fa0306d35d80a70f903ba' | |
DEPS_HASH_MAC_ARM64: '90078e2141818a37def7ebdceb3dcde71dc4adc1ce81d6e31ba21916f85c77bf' | |
DEPS_VERSION_WIN: '2023-03-20' | |
jobs: | |
clang_check: | |
name: '01 - Code Format Check' | |
runs-on: [ubuntu-22.04] | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: 'Install clang-format' | |
run: sudo apt-get install -y clang-format-13 | |
- name: 'Run clang-format' | |
run: | | |
./CI/check-format.sh | |
./CI/check-changes.sh | |
config: | |
name: '01 - Configure Build Jobs' | |
runs-on: [ubuntu-22.04] | |
outputs: | |
create_artifacts: ${{ steps.config.outputs.create_artifacts }} | |
cache_date: ${{ steps.config.outputs.cache_date }} | |
steps: | |
- name: 'Configure Build Jobs' | |
id: config | |
run: | | |
if [[ "${{ github.event_name == 'pull_request' }}" == "true" ]]; then | |
echo "create_artifacts=${{ contains(github.event.pull_request.labels.*.name, 'Seeking Testers') }}" >> $GITHUB_OUTPUT | |
else | |
echo 'create_artifacts=true' >> $GITHUB_OUTPUT | |
fi | |
echo "cache_date=$(date +"%Y-%m-%d")" >> $GITHUB_OUTPUT | |
windows_build: | |
name: '02 - Windows' | |
runs-on: [windows-2022] | |
needs: [config, clang_check] | |
if: always() | |
strategy: | |
matrix: | |
arch: [x64, x86] | |
env: | |
CMAKE_GENERATOR: 'Visual Studio 17 2022' | |
CMAKE_SYSTEM_VERSION: '10.0.18363.657' | |
VIRTUALCAM-GUID: 'A3FCE0F5-3493-419F-958A-ABA1250EC20B' | |
BUILD_FOR_DISTRIBUTION: ${{ startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' }} | |
defaults: | |
run: | |
working-directory: 'obs-studio' | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
path: 'obs-studio' | |
fetch-depth: 0 | |
- name: 'Add msbuild to PATH' | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Setup Environment | |
id: setup | |
run: | | |
$CommitHash = git rev-parse --short=9 HEAD | |
"commitHash=${CommitHash}" >> $env:GITHUB_OUTPUT | |
- name: 'Install dependencies' | |
env: | |
RESTORED_VLC: ${{ steps.vlc-cache.outputs.cache-hit }} | |
RESTORED_CEF: ${{ steps.cef-cache.outputs.cache-hit }} | |
run: CI/windows/01_install_dependencies.ps1 -BuildArch ${{ matrix.arch }} | |
- name: 'Build OBS' | |
run: CI/windows/02_build_obs.ps1 -BuildArch ${{ matrix.arch }} |