File: azure-pipelines.yml

package info (click to toggle)
kodi-vfs-libarchive 21.0.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: cpp: 478; makefile: 9
file content (76 lines) | stat: -rw-r--r-- 2,339 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
variables:
  app_id: 'vfs.libarchive'

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 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)'