summaryrefslogtreecommitdiffstats
path: root/azure-pipelines/build-appimage
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-10-16 17:17:42 +0200
committerJay Berkenbilt <ejb@ql.org>2020-10-16 17:19:09 +0200
commit1bcd8c1649e65e2be82a8839c857355eb4d3196b (patch)
tree6152ce0182fb89b75ded1abbf082eaf93ff6346d /azure-pipelines/build-appimage
parent807aaa46b1b26a459ac1ce44c17dbe872ad0b637 (diff)
downloadqpdf-1bcd8c1649e65e2be82a8839c857355eb4d3196b.tar.zst
Rename azure-pipelines to build-scripts
Diffstat (limited to 'azure-pipelines/build-appimage')
-rwxr-xr-xazure-pipelines/build-appimage22
1 files changed, 0 insertions, 22 deletions
diff --git a/azure-pipelines/build-appimage b/azure-pipelines/build-appimage
deleted file mode 100755
index 8a614701..00000000
--- a/azure-pipelines/build-appimage
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-#
-# Any extra args are passed to the docker run command before the
-# invocation of qpdfbuild. This is useful for iterating locally as
-# described in README-maintainer.
-#
-set -ex
-cd appimage
-docker build -t qpdfbuild .
-rm -rf build
-mkdir build
-cd ..
-git clone .git appimage/build/qpdf
-docker run --privileged --rm \
- -v $PWD/appimage/build:/tmp/build ${1+"$@"} qpdfbuild
-rm -rf distribution
-mkdir distribution
-cp -p appimage/build/qpdf/appimage/build/qpdf*AppImage* distribution
-for i in distribution/*; do
- mv $i $(echo $i | sed -e 's/\.AppImage/-ci.AppImage/')
-done
-sha256sum distribution/*