From: Flole998 Date: Mon, 11 Apr 2022 03:09:53 +0000 (+0200) Subject: Use GitHubs CI for Building X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70bcfbe376804ad44a06d12fd9c03d1bef58853c;p=thirdparty%2Ftvheadend.git Use GitHubs CI for Building --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..5efc7c30d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build Tvheadend CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: dependencies + run: sudo apt-get install -y cmake git build-essential pkg-config gettext libavahi-client-dev libssl-dev zlib1g-dev wget bzip2 git-core liburiparser-dev libpcre2-dev libdvbcsa-dev python3 python3-requests debhelper ccache + - name: build + run: AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-ffmpeg_static\\ --enable-hdhomerun_static\\ --python=python3 ./Autobuild.sh