forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into lazarus-i18n
- Loading branch information
Showing
59 changed files
with
2,961 additions
and
19,363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xe | ||
|
||
readonly build=$(git rev-list --abbrev-commit --max-count=1 HEAD) | ||
sed -i "s/@GIT_COMMIT@/$build/" buildinfo.pas | ||
|
||
pushd test | ||
lazbuild transguitest.lpi "--lazarusdir=${TRANSGUI_LAZARUS_DIR}" | ||
./units/transguitest -a | ||
popd | ||
|
||
lazbuild transgui.lpi --ws=qt5 --build-mode=Release "--lazarusdir=${TRANSGUI_LAZARUS_DIR}" | ||
cd units | ||
|
||
readonly app_ver=$(xmllint --xpath 'string(//StringTable/@ProductVersion)' ../transgui.lpi) | ||
LINUXDEPLOY_OUTPUT_VERSION=$app_ver linuxdeploy-x86_64.AppImage \ | ||
-e transgui --create-desktop-file --appdir AppDir \ | ||
--output appimage -i ../transgui.png --plugin qt | ||
sha256sum transgui-${app_ver}-x86_64.AppImage | ||
mv transgui-${app_ver}-x86_64.AppImage transgui-x86_64.AppImage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Linux Build | ||
|
||
on: | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
branches: [main, develop] | ||
|
||
jobs: | ||
build-linux: | ||
|
||
runs-on: ubuntu-latest | ||
container: lighterowl/transgui-sdk:1.0 | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
submodules: recursive | ||
|
||
- run: | | ||
export HOME=/root | ||
git config --global --add safe.directory '*' | ||
source /root/.transgui_sdk/source.me | ||
./.github/build_linux.sh | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: TransGUI Linux | ||
path: units/transgui-x86_64.AppImage | ||
if-no-files-found: error |
Oops, something went wrong.