1
0
mirror of https://github.com/DigitalDevices/pvr.octonet.git synced 2023-10-10 13:36:57 +02:00

Merge pull request #25 from ksooo/Leia

build with Kodi Leia API
This commit is contained in:
Kai Sommerfeld 2019-04-16 06:39:23 +02:00 committed by GitHub
commit df1b033f14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 7 deletions

View File

@ -36,7 +36,7 @@ before_install:
# #
before_script: before_script:
- cd $TRAVIS_BUILD_DIR/.. - cd $TRAVIS_BUILD_DIR/..
- git clone --depth=1 https://github.com/xbmc/xbmc.git - git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git
- mkdir -p xbmc/cmake/addons/addons/pvr.octonet - mkdir -p xbmc/cmake/addons/addons/pvr.octonet
- echo "pvr.octonet https://github.com/DigitalDevices/pvr.octonet master" > xbmc/cmake/addons/addons/pvr.octonet/pvr.octonet.txt - echo "pvr.octonet https://github.com/DigitalDevices/pvr.octonet master" > xbmc/cmake/addons/addons/pvr.octonet/pvr.octonet.txt
- cd $TRAVIS_BUILD_DIR && mkdir build && cd build - cd $TRAVIS_BUILD_DIR && mkdir build && cd build

2
Jenkinsfile vendored
View File

@ -1 +1 @@
buildPlugin() buildPlugin(version: "Leia")

View File

@ -20,12 +20,9 @@ $ git clone https://github.com/DigitalDevices/pvr.octonet.git
Clone the Kodi repository: Clone the Kodi repository:
``` ```
$ git clone https://github.com/xbmc/xbmc.git $ git clone --branch Leia https://github.com/xbmc/xbmc.git
``` ```
If you already have a local Kodi checkout, you can use that one. Just make sure it is recent enough
(Kodi 17 Beta 5 or later should work).
``` ```
$ cd pvr.octonet $ cd pvr.octonet
$ mkdir build $ mkdir build

View File

@ -29,7 +29,7 @@ artifacts:
build_script: build_script:
- cd .. - cd ..
- set ROOT=%cd% - set ROOT=%cd%
- git clone --depth=1 https://github.com/xbmc/xbmc.git - git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git
- mkdir xbmc\cmake\addons\addons\pvr.octonet - mkdir xbmc\cmake\addons\addons\pvr.octonet
- echo pvr.octonet https://github.com/DigitalDevices/pvr.octonet master > xbmc\cmake\addons\addons\pvr.octonet\pvr.octonet.txt - echo pvr.octonet https://github.com/DigitalDevices/pvr.octonet master > xbmc\cmake\addons\addons\pvr.octonet\pvr.octonet.txt
- cd %ADDON% - cd %ADDON%