Skip to content

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwinEsch committed Feb 23, 2020
1 parent 3d33a69 commit 332db36
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,65 @@
variables:
app_id: 'pvr.vbox'

trigger:
branches:
include:
- Matrix
- releases/*
paths:
include:
- '*'
exclude:
- 'debian/*'

jobs:
- job: Windows

pool:
vmImage: 'VS2017-Win2016'

strategy:
matrix:
Win32:
GENERATOR: "Visual Studio 15 2017"
ARCHITECTURE: Win32
CONFIGURATION: Release
Win64:
GENERATOR: "Visual Studio 15 2017"
ARCHITECTURE: x64
CONFIGURATION: Release
Win64-UWP:
GENERATOR: "Visual Studio 15 2017"
ARCHITECTURE: x64
CONFIGURATION: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0"
ARM64-UWP:
GENERATOR: "Visual Studio 15 2017"
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 master --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)'

0 comments on commit 332db36

Please sign in to comment.