Fix: Glibc error by pegging ubuntu version, appimage include extras like breez_sdk (#3397)
This commit is contained in:
parent
1ec28079d9
commit
ad606b2517
2 changed files with 80 additions and 62 deletions
30
.github/workflows/packaging.yml
vendored
30
.github/workflows/packaging.yml
vendored
|
|
@ -5,23 +5,19 @@ on:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build-linux-package:
|
build-linux-package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
# Step 1: Checkout the repository
|
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
# Step 2: Set up Python (uv will still use this toolchain)
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.12"
|
||||||
|
|
||||||
# Step 3: Install system deps (fuse) + uv
|
|
||||||
- name: Install system deps and uv
|
- name: Install system deps and uv
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|
@ -30,7 +26,6 @@ jobs:
|
||||||
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
# Optional: Cache uv + venv to speed up CI
|
|
||||||
- name: Cache uv and venv
|
- name: Cache uv and venv
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -39,7 +34,6 @@ jobs:
|
||||||
.venv
|
.venv
|
||||||
key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock', 'pyproject.toml') }}
|
key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock', 'pyproject.toml') }}
|
||||||
|
|
||||||
# Step 4: Prepare packaging tree and clone LNbits
|
|
||||||
- name: Prepare packaging & clone LNbits
|
- name: Prepare packaging & clone LNbits
|
||||||
run: |
|
run: |
|
||||||
mv .github/packaging packaging
|
mv .github/packaging packaging
|
||||||
|
|
@ -47,18 +41,11 @@ jobs:
|
||||||
git clone https://github.com/lnbits/lnbits.git packaging/linux/AppDir/usr/lnbits
|
git clone https://github.com/lnbits/lnbits.git packaging/linux/AppDir/usr/lnbits
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
# Step 5: Build the LNbits binary with uv + PyInstaller
|
|
||||||
- name: Build LNbits binary (uv + PyInstaller)
|
- name: Build LNbits binary (uv + PyInstaller)
|
||||||
run: |
|
run: |
|
||||||
cd packaging/linux/AppDir/usr/lnbits
|
cd packaging/linux/AppDir/usr/lnbits
|
||||||
|
uv sync --all-extras --no-dev
|
||||||
# Install project deps into .venv using uv
|
|
||||||
uv sync
|
|
||||||
|
|
||||||
# Install PyInstaller into the same environment
|
|
||||||
uv pip install pyinstaller
|
uv pip install pyinstaller
|
||||||
|
|
||||||
# Build the LNbits binary
|
|
||||||
uv run pyinstaller \
|
uv run pyinstaller \
|
||||||
--onefile \
|
--onefile \
|
||||||
--name lnbits \
|
--name lnbits \
|
||||||
|
|
@ -66,6 +53,10 @@ jobs:
|
||||||
--collect-all embit \
|
--collect-all embit \
|
||||||
--collect-all lnbits \
|
--collect-all lnbits \
|
||||||
--collect-all sqlalchemy \
|
--collect-all sqlalchemy \
|
||||||
|
--collect-all breez_sdk \
|
||||||
|
--collect-binaries breez_sdk \
|
||||||
|
--collect-all breez_sdk_liquid \
|
||||||
|
--collect-binaries breez_sdk_liquid \
|
||||||
--collect-all aiosqlite \
|
--collect-all aiosqlite \
|
||||||
--hidden-import=passlib.handlers.bcrypt \
|
--hidden-import=passlib.handlers.bcrypt \
|
||||||
"$(uv run which lnbits)"
|
"$(uv run which lnbits)"
|
||||||
|
|
@ -75,7 +66,7 @@ jobs:
|
||||||
chmod +x packaging/linux/AppDir/lnbits.desktop
|
chmod +x packaging/linux/AppDir/lnbits.desktop
|
||||||
chmod +x packaging/linux/AppDir/usr/lnbits/dist/lnbits
|
chmod +x packaging/linux/AppDir/usr/lnbits/dist/lnbits
|
||||||
|
|
||||||
# Clean out non-dist content from the app dir to keep AppImage slim
|
# keep AppDir slim
|
||||||
find packaging/linux/AppDir/usr/lnbits -mindepth 1 -maxdepth 1 \
|
find packaging/linux/AppDir/usr/lnbits -mindepth 1 -maxdepth 1 \
|
||||||
! -name 'dist' \
|
! -name 'dist' \
|
||||||
! -name 'lnbits' \
|
! -name 'lnbits' \
|
||||||
|
|
@ -91,9 +82,14 @@ jobs:
|
||||||
packaging/linux/AppDir "$APPIMAGE_NAME"
|
packaging/linux/AppDir "$APPIMAGE_NAME"
|
||||||
chmod +x "$APPIMAGE_NAME"
|
chmod +x "$APPIMAGE_NAME"
|
||||||
echo "APPIMAGE_NAME=$APPIMAGE_NAME" >> $GITHUB_ENV
|
echo "APPIMAGE_NAME=$APPIMAGE_NAME" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# 🔎 quick audit: show glibc versions referenced by the binary
|
||||||
|
echo "Runner glibc:"
|
||||||
|
ldd --version | head -n1 || true
|
||||||
|
echo "Symbols needed by lnbits:"
|
||||||
|
strings "$APPIMAGE_NAME" | grep -o 'GLIBC_[0-9.]*' | sort -u || true
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
# Step 6: Upload Linux Release Asset
|
|
||||||
- name: Upload Linux Release Asset
|
- name: Upload Linux Release Asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
112
lnbits.sh
112
lnbits.sh
|
|
@ -1,53 +1,75 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# Check install has not already run
|
# --- Config you might tweak ---
|
||||||
if [ ! -d lnbits/data ]; then
|
REPO_URL="https://github.com/lnbits/lnbits.git"
|
||||||
|
BRANCH="main"
|
||||||
|
APP_DIR="${PWD}/lnbits"
|
||||||
|
HOST="${HOST:-0.0.0.0}"
|
||||||
|
PORT="${PORT:-5000}"
|
||||||
|
ADMIN_UI="${LNBITS_ADMIN_UI:-true}"
|
||||||
|
# -------------------------------
|
||||||
|
|
||||||
# Update package list and install prerequisites non-interactively
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
sudo apt update -y
|
|
||||||
sudo apt install -y software-properties-common
|
|
||||||
|
|
||||||
# Add the deadsnakes PPA repository non-interactively
|
# Ensure basic tooling
|
||||||
sudo add-apt-repository -y ppa:deadsnakes/ppa
|
if ! command -v curl >/dev/null 2>&1 || ! command -v git >/dev/null 2>&1; then
|
||||||
|
sudo apt-get update -y
|
||||||
# Install Python 3.10 and distutils non-interactively
|
sudo apt-get install -y curl git
|
||||||
sudo apt install -y python3.10 python3.10-distutils
|
|
||||||
|
|
||||||
# Install UV
|
|
||||||
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
||||||
|
|
||||||
export PATH="/home/$USER/.local/bin:$PATH"
|
|
||||||
|
|
||||||
if [ ! -d lnbits/wallets ]; then
|
|
||||||
# Clone the LNbits repository
|
|
||||||
git clone https://github.com/lnbits/lnbits.git
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Failed to clone the repository ... FAIL"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
# Ensure we are in the lnbits directory
|
|
||||||
cd lnbits || { echo "Failed to cd into lnbits ... FAIL"; exit 1; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
git checkout main
|
|
||||||
# Make data folder
|
|
||||||
mkdir data
|
|
||||||
|
|
||||||
# Copy the .env.example to .env
|
|
||||||
cp .env.example .env
|
|
||||||
|
|
||||||
elif [ ! -d lnbits/wallets ]; then
|
|
||||||
# cd into lnbits
|
|
||||||
cd lnbits || { echo "Failed to cd into lnbits ... FAIL"; exit 1; }
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install the dependencies using UV
|
# System build deps and secp headers
|
||||||
uv sync --all-extras
|
if command -v apt-get >/dev/null 2>&1; then
|
||||||
|
sudo apt-get update -y
|
||||||
|
sudo apt-get install -y \
|
||||||
|
pkg-config \
|
||||||
|
build-essential \
|
||||||
|
libsecp256k1-dev \
|
||||||
|
automake \
|
||||||
|
autoconf \
|
||||||
|
libtool \
|
||||||
|
m4
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install uv (if missing)
|
||||||
|
if ! command -v uv >/dev/null 2>&1; then
|
||||||
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
|
# Ensure PATH for current session
|
||||||
|
if [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
# Set environment variables for LNbits
|
# Clone or reuse repo
|
||||||
export LNBITS_ADMIN_UI=true
|
if [[ ! -d "$APP_DIR/.git" ]]; then
|
||||||
export HOST=0.0.0.0
|
git clone "$REPO_URL" "$APP_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
# Run LNbits
|
cd "$APP_DIR"
|
||||||
uv run lnbits
|
git fetch --all --prune
|
||||||
|
git checkout "$BRANCH"
|
||||||
|
git pull --ff-only || true
|
||||||
|
|
||||||
|
# First-run setup
|
||||||
|
mkdir -p data
|
||||||
|
[[ -f .env ]] || cp .env.example .env || true
|
||||||
|
|
||||||
|
# Prefer system libsecp256k1 (avoid autotools path)
|
||||||
|
export SECP_BUNDLED=0
|
||||||
|
|
||||||
|
# Sync dependencies with Python 3.12
|
||||||
|
uv sync --python 3.12 --all-extras --no-dev
|
||||||
|
|
||||||
|
# Environment
|
||||||
|
export LNBITS_ADMIN_UI="$ADMIN_UI"
|
||||||
|
export HOST="$HOST"
|
||||||
|
export PORT="$PORT"
|
||||||
|
|
||||||
|
# Open firewall (optional)
|
||||||
|
if command -v ufw >/dev/null 2>&1; then
|
||||||
|
sudo ufw allow "$PORT"/tcp || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Run LNbits with Python 3.12 via uv
|
||||||
|
exec uv run --python 3.12 lnbits
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue