Open izderadicka opened 5 days ago
I feced with the same issue. Ubuntu 22.04 Build also stucks inside docker container
FROM rust:bookworm
ENV NODE_VERSION 18
ENV PNPM_VERSION 9.5.0
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /home
RUN set -uex; \
apt-get update; \
apt-get install -y ca-certificates \
gnupg \
libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libxdo-dev \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev; \
mkdir -p /etc/apt/keyrings; \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg; \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE_VERSION}.x nodistro main" \
> /etc/apt/sources.list.d/nodesource.list; \
apt-get -qy update; \
apt-get -qy install nodejs; \
rm -rf /tmp/* /var/tmp/*;
RUN npm i -g pnpm@${PNPM_VERSION}
RUN cargo install tauri-cli
Part of my tauri.conf.json
"targets": ["deb", "rpm", "msi", "app"],
"windows": {
"webviewInstallMode": {
"type": "offlineInstaller"
},
"wix": {
"language": "ru-RU"
}
},
"linux": {
"deb": {
"depends": []
},
"rpm": {
"depends": []
}
}
I use resources and sidecars
Describe the bug
rpm bundling stucks
running
cargo tauri build
Build is OK, deb bundling takes like 10-15 secs, but rpm bundling then runs forever (I stopped it after 10 minutes or so) - in processes I see
cargo tauri build
running and taking 100% of one CPU/core.Reproduction
This happens for rqbit project on Ubuntu 22.04, node and npm installed via nvm, tauri dependencies installed as per docs
Expected behavior
No response
Full
tauri info
outputStack trace
No response
Additional context
No response