0
0
mirror of https://github.com/kodi-pvr/pvr.iptvsimple.git synced 2024-09-22 03:51:25 +00:00
pvr.iptvsimple/azure-pipelines.yml

77 lines
2.3 KiB
YAML

variables:
app_id: 'pvr.iptvsimple'
trigger:
branches:
include:
- Nexus
- Omega
- releases/*
paths:
include:
- '*'
exclude:
- 'debian/*'
jobs:
- job: Windows
pool:
vmImage: 'windows-2022'
strategy:
matrix:
Win32:
GENERATOR: "Visual Studio 17 2022"
ARCHITECTURE: Win32
CONFIGURATION: Release
Win64:
GENERATOR: "Visual Studio 17 2022"
ARCHITECTURE: x64
CONFIGURATION: Release
Win32-UWP:
GENERATOR: "Visual Studio 17 2022"
ARCHITECTURE: Win32
CONFIGURATION: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0"
Win64-UWP:
GENERATOR: "Visual Studio 17 2022"
ARCHITECTURE: x64
CONFIGURATION: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0"
ARM32-UWP:
GENERATOR: "Visual Studio 17 2022"
ARCHITECTURE: ARM
CONFIGURATION: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0"
#ARM64-UWP:
# GENERATOR: "Visual Studio 17 2022"
# ARCHITECTURE: ARM64
# CONFIGURATION: Release
# WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0"
workspace:
clean: all
steps:
- script: |
cd ..
git clone --branch Omega --depth=1 https://github.com/xbmc/xbmc.git kodi
cd $(Build.SourcesDirectory)
mkdir build
cd build
mkdir "definition/$(app_id)"
echo $(app_id) . . > definition/$(app_id)/$(app_id).txt
mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)"
- task: CMake@1
inputs:
workingDirectory: 'build'
cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons'
- task: CMake@1
inputs:
workingDirectory: 'build'
cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)'