Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.ci/azure-pipelines/build_linux.bash')
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash22
1 files changed, 0 insertions, 22 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index 2c1bccfba..690e73de5 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -25,25 +25,3 @@ cmake --build .
ctest --verbose
cmake --install .
-# Get the AppImage-tool - always use the latest available version
-wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases -O - | grep "appimagetool-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2)
-chmod +x appimagetool-*.AppImage
-
-# find the appdir that was created by cmake --install
-appDir=$(find $HOME -type d -name 'appdir'| head -n 1)
-
-# Bundle the AppDir
-./appimagetool-*.AppImage -s deploy $appDir/usr/share/applications/*.desktop # Bundle EVERYTHING
-
-# Actually create the AppImage
-VERSION="$VER" ARCH="x86_64" ./appimagetool-*.AppImage $appDir
-
-for f in Mumble*.AppImage; do
- # Embed update information into AppImage
- echo -n "zsync|https://dl.mumble.info/nightly/latest-x86_64.AppImage.zsync" | dd of=$f seek=175720 conv=notrunc oflag=seek_bytes
-
- # Generate zsync file for AppImage
- zsyncmake $f
-done
-
-mv Mumble*.AppImage* $BUILD_ARTIFACTSTAGINGDIRECTORY