]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
doozer/autobuild: debian buster target
authormpmc <hello@markclarkstone.co.uk>
Tue, 30 Oct 2018 20:01:03 +0000 (20:01 +0000)
committerJaroslav Kysela <perex@perex.cz>
Wed, 31 Oct 2018 07:35:11 +0000 (08:35 +0100)
.doozer.json
Autobuild/buster-amd64.sh [new file with mode: 0644]
Autobuild/buster-i386.sh [new file with mode: 0644]

index 00f8bd642a825ad40b75f307ffb5af9024a577dc..45c80397a4024556a06b7ee2c029ac02af7ad972 100644 (file)
         "support/bintray.py publish filelist.txt"
       ]
     },
+    "buster-amd64": {
+      "buildenv": "docker:debian:buster",
+      "builddeps": [
+        "lsb-release",
+        "cmake",
+        "git",
+        "build-essential",
+        "pkg-config",
+        "gettext",
+        "libavahi-client-dev",
+        "libssl-dev",
+        "zlib1g-dev",
+        "wget",
+        "bzip2",
+        "git-core",
+        "liburiparser-dev",
+        "libpcre3-dev",
+        "libdvbcsa-dev",
+        "python",
+        "python-requests",
+        "debhelper",
+        "ccache"
+      ],
+      "buildcmd": [
+        "AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}",
+        "support/bintray.py publish filelist.txt"
+      ]
+    },
+    "buster-i386": {
+      "buildenv": "docker:i386/debian:buster",
+      "builddeps": [
+        "lsb-release",
+        "cmake",
+        "git",
+        "build-essential",
+        "pkg-config",
+        "gettext",
+        "libavahi-client-dev",
+        "libssl-dev",
+        "zlib1g-dev",
+        "wget",
+        "bzip2",
+        "git-core",
+        "liburiparser-dev",
+        "libpcre3-dev",
+        "libdvbcsa-dev",
+        "python",
+        "python-requests",
+        "debhelper",
+        "ccache"
+      ],
+      "buildcmd": [
+        "AUTOBUILD_CONFIGURE_EXTRA=--enable-ccache\\ --enable-ffmpeg_static\\ --enable-hdhomerun_static ./Autobuild.sh -t ${TARGET} -j ${PARALLEL} -w ${WORKDIR}",
+        "support/bintray.py publish filelist.txt"
+      ]
+    },
     "raspbian-jessie": {
       "buildenv": "raspbian-jessie",
       "builddeps": [
         "./configure --disable-dvbscan && make -C rpm build-doozer",
         "BINTRAY_REPO=centos support/bintray.py publish filelist.txt",
       ]
-    },
+    }
+  }
 }
diff --git a/Autobuild/buster-amd64.sh b/Autobuild/buster-amd64.sh
new file mode 100644 (file)
index 0000000..daa3a51
--- /dev/null
@@ -0,0 +1,3 @@
+AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=x86_64"
+DEBDIST=buster
+source Autobuild/debian.sh
diff --git a/Autobuild/buster-i386.sh b/Autobuild/buster-i386.sh
new file mode 100644 (file)
index 0000000..c225170
--- /dev/null
@@ -0,0 +1,3 @@
+AUTOBUILD_CONFIGURE_EXTRA="${AUTOBUILD_CONFIGURE_EXTRA:-} --arch=i686"
+DEBDIST=buster
+source Autobuild/debian.sh