Unified Linux package creation into single script 'setup/Linux/createPackages.sh' that uses 'linuxdeployqt' for both the '.tar.gz' and '.AppImage' package.
20 lines
315 B
Bash
20 lines
315 B
Bash
#!/bin/sh -l
|
|
|
|
echo "building commit: $1"
|
|
|
|
git clone https://github.com/CoatiSoftware/Sourcetrail.git
|
|
|
|
cd Sourcetrail
|
|
|
|
git checkout $1
|
|
|
|
./script/buildonly.sh all
|
|
|
|
./script/build.sh release test
|
|
|
|
./setup/Linux/createPackages.sh
|
|
|
|
mkdir release
|
|
cp ./Sourcetrail*.tar.gz ./release/
|
|
cp ./Sourcetrail*.AppImage ./release/
|