Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Flatpak build #2417

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/atomicdex-desktop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- master
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:

env:
DEX_API: "mm2_kmd"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ atomic_legacy_imgui
.vscode/settings.json
.vscode/tasks.json
bundled
.flatpak-builder
7 changes: 6 additions & 1 deletion ci_tools_atomic_dex/ci_scripts/linux_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ sudo apt-get install build-essential \
libxcb-render-util0-dev \
libxcb-xinerama0 \
libgstreamer-plugins-base1.0-dev \
flatpak-builder \
git -y


# Get flatpak platform/sdk
flatpak install org.kde.Sdk//5.15-22.08 -y
flatpak install org.kde.Platform//5.15-22.08 -y

# get llvm
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
Expand Down
28 changes: 28 additions & 0 deletions ci_tools_atomic_dex/flatpak/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"app-id": "com.komodoplatform.komodowallet",
"runtime": "org.kde.Platform",
"runtime-version": "5.15-22.08",
"sdk": "org.kde.Sdk",
"command": "/app/bin/AntaraAtomicDexAppDir/usr/bin/komodo-wallet",
"finish-args": [
"--socket=x11",
"--share=ipc",
"--device=dri"
],
"modules": [
{
"name": "KomodoWallet",
"buildsystem": "simple",
"build-commands": [
"mkdir -p /app/bin",
"unzip komodo-wallet-linux-ac46a28.zip -d /app/bin"
],
"sources": [
{
"type": "file",
"path": "/home/smk762/Downloads/komodo-wallet-ubuntu-debug-ac46a28.zip/komodo-wallet-linux-ac46a28.zip"
}
]
}
]
}
Loading