mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2023-10-10 13:36:57 +02:00
allow OS build test via github workflows
This commit is contained in:
parent
012ff40c25
commit
e00fc3b4ea
61
.github/workflows/build.yml
vendored
Normal file
61
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
name: Build and run tests
|
||||
on: [push, pull_request]
|
||||
env:
|
||||
app_id: pvr.octonet
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: "Debian package test"
|
||||
os: ubuntu-18.04
|
||||
CC: gcc
|
||||
CXX: g++
|
||||
DEBIAN_BUILD: true
|
||||
- os: ubuntu-18.04
|
||||
CC: gcc
|
||||
CXX: g++
|
||||
- os: ubuntu-18.04
|
||||
CC: clang
|
||||
CXX: clang++
|
||||
- os: macos-10.15
|
||||
steps:
|
||||
- name: Install needed ubuntu depends
|
||||
env:
|
||||
DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }}
|
||||
run: |
|
||||
if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/xbmc-nightly; fi
|
||||
if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi
|
||||
if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi
|
||||
- name: Checkout Kodi repo
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: xbmc/xbmc
|
||||
ref: master
|
||||
path: xbmc
|
||||
- name: Checkout pvr.argustv repo
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: ${{ env.app_id }}
|
||||
- name: Configure
|
||||
env:
|
||||
CC: ${{ matrix.CC }}
|
||||
CXX: ${{ matrix.CXX }}
|
||||
DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }}
|
||||
run: |
|
||||
if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir -p build && cd build; fi
|
||||
if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=${{ github.workspace }} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xbmc/addons -DPACKAGE_ZIP=1 ${{ github.workspace }}/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 ${{ github.workspace }}/${app_id}; fi
|
||||
- name: Build
|
||||
env:
|
||||
CC: ${{ matrix.CC }}
|
||||
CXX: ${{ matrix.CXX }}
|
||||
DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }}
|
||||
run: |
|
||||
if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id}/build; fi
|
||||
if [[ $DEBIAN_BUILD != true ]]; then make; fi
|
||||
if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh ${{ github.workspace }}/${app_id}; fi
|
@ -3,6 +3,7 @@ Digital Devices [Octonet](http://www.digital-devices.eu/shop/de/netzwerk-tv/) PV
|
||||
|
||||
| Platform | Status |
|
||||
|----------|--------|
|
||||
| Linux + OS X (github) | [![Build and run tests](https://github.com/kodi-pvr/pvr.octonet/actions/workflows/build.yml/badge.svg?branch=Matrix)](https://github.com/kodi-pvr/pvr.octonet/actions/workflows/build.yml) |
|
||||
| Windows (AppVeyor) | [![Build status](https://ci.appveyor.com/api/projects/status/m7dhmpmuf5coir5h?svg=true)](https://ci.appveyor.com/project/julianscheel/pvr-octonet) |
|
||||
|
||||
# Building
|
||||
|
Loading…
Reference in New Issue
Block a user