From 368e73a89f5bac50bf994145f579b7fdeb704ecc Mon Sep 17 00:00:00 2001 From: ksooo <3226626+ksooo@users.noreply.github.com> Date: Mon, 6 Nov 2023 18:22:39 +0100 Subject: [PATCH 1/3] Azure Pipelines: Switch xbmc branch to Nexus --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8273857..cf65def 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,7 @@ jobs: - script: | cd .. - git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git kodi + git clone --branch Nexus --depth=1 https://github.com/xbmc/xbmc.git kodi cd $(Build.SourcesDirectory) mkdir build cd build From 6c03764ad2820ade25d51b5ae449cf0a2adf6409 Mon Sep 17 00:00:00 2001 From: ksooo <3226626+ksooo@users.noreply.github.com> Date: Mon, 6 Nov 2023 18:22:50 +0100 Subject: [PATCH 2/3] README.md: Remove Coverity badge (we ran last analysis in 2020, so numbers are pointless) --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index aed78b0..c74944f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ [![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md) [![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.dvblink?branchName=Nexus)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=59&branchName=Nexus) [![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.dvblink/job/Nexus/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.dvblink/branches/) -[![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120) # DVBLink PVR DVBLink PVR client addon for [Kodi](https://kodi.tv) From b08685f2542558b7344411b5c622bf4e099f7c4a Mon Sep 17 00:00:00 2001 From: ksooo <3226626+ksooo@users.noreply.github.com> Date: Mon, 6 Nov 2023 18:22:50 +0100 Subject: [PATCH 3/3] Remove .travis.yml --- .travis.yml | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f17f32b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,53 +0,0 @@ -language: cpp - -env: - global: - - app_id=pvr.dvblink - -# -# Define the build matrix -# -matrix: - include: - - os: linux - dist: bionic - sudo: required - compiler: gcc - - os: linux - dist: bionic - sudo: required - compiler: clang - - os: linux - dist: bionic - sudo: required - compiler: gcc - env: DEBIAN_BUILD=true - - os: linux - dist: focal - sudo: required - compiler: gcc - env: DEBIAN_BUILD=true - - os: osx - osx_image: xcode10.2 - -before_install: - - if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/xbmc-nightly; fi - - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi - -# -# The addon source is automatically checked out in $TRAVIS_BUILD_DIR, -# we'll put the Kodi source on the same level -# -before_script: - - if [[ $DEBIAN_BUILD != true ]]; then cd $TRAVIS_BUILD_DIR/..; fi - - if [[ $DEBIAN_BUILD != true ]]; then git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git; fi - - if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir build && cd build; fi - - if [[ $DEBIAN_BUILD != true ]]; then mkdir -p definition/${app_id}; fi - - if [[ $DEBIAN_BUILD != true ]]; then echo ${app_id} $TRAVIS_BUILD_DIR $TRAVIS_COMMIT > definition/${app_id}/${app_id}.txt; fi - - if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DADDONS_DEFINITION_DIR=$TRAVIS_BUILD_DIR/build/definition -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons; fi - - if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/master/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi - - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep $TRAVIS_BUILD_DIR; fi - -script: - - if [[ $DEBIAN_BUILD != true ]]; then make; fi - - if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh $TRAVIS_BUILD_DIR; fi