diff options
author | Devan Carpenter <devan@taler.net> | 2023-11-22 22:41:23 -0500 |
---|---|---|
committer | Devan Carpenter <devan@taler.net> | 2023-11-22 22:41:23 -0500 |
commit | baa070d19cda046cb0349e85a9a8aabcd9f52661 (patch) | |
tree | 8ff858c8b8c9cfb42bc6d79f7da1cba603970577 /ci/jobs/4-deb-package | |
parent | e53e06bc753e444b7365cf97bcbe006a52d850b9 (diff) |
ci: move to contrib dir
Diffstat (limited to 'ci/jobs/4-deb-package')
-rw-r--r-- | ci/jobs/4-deb-package/install-fix.patch | 13 | ||||
-rwxr-xr-x | ci/jobs/4-deb-package/job.sh | 24 |
2 files changed, 0 insertions, 37 deletions
diff --git a/ci/jobs/4-deb-package/install-fix.patch b/ci/jobs/4-deb-package/install-fix.patch deleted file mode 100644 index 8334c5a7a..000000000 --- a/ci/jobs/4-deb-package/install-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/debian/taler-exchange.install b/debian/taler-exchange.install -index 631c270b..072c6231 100644 ---- a/debian/taler-exchange.install -+++ b/debian/taler-exchange.install -@@ -36,6 +36,6 @@ usr/share/taler/exchange/templates/*.must - debian/etc-taler-exchange/* etc/ - - # Terms of service / privacy policy templates --usr/share/taler/exchange/*.rst -+#usr/share/taler/exchange/terms/*.rst - # Translations of ToS/PP --usr/share/taler/exchange/locale/*/LC_MESSAGES/*.po -+#usr/share/taler/exchange/terms/locale/*/LC_MESSAGES/*.po diff --git a/ci/jobs/4-deb-package/job.sh b/ci/jobs/4-deb-package/job.sh deleted file mode 100755 index dc78cdf24..000000000 --- a/ci/jobs/4-deb-package/job.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -set -exuo pipefail -# This file is in the public domain. -# Helper script to build the latest DEB packages in the container. - -unset LD_LIBRARY_PATH - - -git apply ./ci/jobs/2-deb-package/install-fix.patch - -# Get current version from debian/control file. -DEB_VERSION=$(dpkg-parsechangelog -S Version) - -# Install build-time dependencies. -mk-build-deps --install --tool='apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes' debian/control - -# We do a sparse checkout, so we need to hint -# the version to the build system. -echo $DEB_VERSION > .version -./bootstrap -dpkg-buildpackage -rfakeroot -b -uc -us - -ls ../*.deb -mv ../*.deb /artifacts/ |