mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
62477d8c65
- for now all versions start with v6.0 - CICD builds use the monolithic build number as patch level, e.g. v6.0.12345 - local builds use the following algorithm - find the newest commit with a CICD build number that is included in the working tree - count the number of commits in the working tree since that commit - if there are no commits since the last CICD build, the local build version will be v6.0.12345-local - if there are N commits since the last CICD build, it will be v6.0.12345-N-local - test builds in the CICD that don't create artifacts simply use a dummy release in order to not incorrectly increment the build number and also not to waste time and resources by manually checking out the nightly-build repo for each of these builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
58 lines
2.6 KiB
Bash
58 lines
2.6 KiB
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# this gets executed by the GitHub Action when building an AppImage for Linux
|
|
# inside of the trusty-qt512 container
|
|
|
|
export PATH=$QT_ROOT/bin:$PATH # Make sure correct qmake is found on the $PATH for linuxdeployqt
|
|
export CMAKE_PREFIX_PATH=$QT_ROOT/lib/cmake
|
|
|
|
# echo "--------------------------------------------------------------"
|
|
# echo "install missing packages"
|
|
# apt install -y libbluetooth-dev libmtp-dev
|
|
|
|
# the container currently has things under / that need to be under /__w/subsurface/subsurface instead
|
|
cp -a /appdir /__w/subsurface/
|
|
cp -a /install-root /__w/subsurface/
|
|
|
|
echo "--------------------------------------------------------------"
|
|
echo "building desktop"
|
|
|
|
# now build our AppImage
|
|
bash -e -x subsurface/scripts/build.sh -desktop -create-appdir -build-with-webkit -quick
|
|
|
|
echo "--------------------------------------------------------------"
|
|
echo "assembling AppImage"
|
|
|
|
export QT_PLUGIN_PATH=$QT_ROOT/plugins
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins
|
|
export QT_DEBUG_PLUGINS=1
|
|
|
|
# set up the appdir
|
|
mkdir -p appdir/usr/plugins/
|
|
|
|
# mv googlemaps plugins into place
|
|
mv appdir/usr/usr/local/Qt/5.*/gcc_64/plugins/* appdir/usr/plugins # the usr/usr is not a typo, that's where it ends up
|
|
rm -rf appdir/usr/home/ appdir/usr/include/ appdir/usr/share/man/ # No need to ship developer and man files as part of the AppImage
|
|
rm -rf appdir/usr/usr appdir/usr/lib/cmake appdir/usr/lib/pkgconfig
|
|
cp /ssllibs/libssl.so appdir/usr/lib/libssl.so.1.1
|
|
cp /ssllibs/libcrypto.so appdir/usr/lib/libcrypto.so.1.1
|
|
|
|
# get the linuxdeployqt tool and run it to collect the libraries
|
|
curl -L -O "https://github.com/probonopd/linuxdeployqt/releases/download/7/linuxdeployqt-7-x86_64.AppImage"
|
|
chmod a+x linuxdeployqt*.AppImage
|
|
unset QTDIR
|
|
unset QT_PLUGIN_PATH
|
|
unset LD_LIBRARY_PATH
|
|
./linuxdeployqt*.AppImage --appimage-extract-and-run ./appdir/usr/share/applications/*.desktop -exclude-libs=libdbus-1.so.3 -bundle-non-qt-libs -qmldir=./subsurface/stats -qmldir=./subsurface/map-widget/ -verbose=2
|
|
|
|
# create the AppImage
|
|
export VERSION=$(cd subsurface/scripts ; ./get-version) # linuxdeployqt uses this for naming the file
|
|
./linuxdeployqt*.AppImage --appimage-extract-and-run ./appdir/usr/share/applications/*.desktop -exclude-libs=libdbus-1.so.3 -appimage -qmldir=./subsurface/stats -qmldir=./subsurface/map-widget/ -verbose=2
|
|
|
|
# copy AppImage to the calling VM
|
|
# with GitHub Actions the /${GITHUB_WORKSPACE} directory is the current working directory at the start of a step
|
|
cp Subsurface*.AppImage* /${GITHUB_WORKSPACE}/Subsurface.AppImage
|
|
ls -l /${GITHUB_WORKSPACE}/Subsurface.AppImage
|