mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
Complete M1 identity work, fix runtime URL regressions, repair the test suite, add CI, migrate packaging/AppImage branding to Bearhub, and document the Qt6/PySide6 migration plan.
11 lines
492 B
Bash
Executable File
11 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
set -Ceufox pipefail
|
|
|
|
if [[ -z "${BEARHUB_VERSION:-}" ]]; then
|
|
echo "Set BEARHUB_VERSION to a Bearhub release tag (e.g. 0.10.7-bearhub.6)." >&2
|
|
exit 1
|
|
fi
|
|
|
|
docker build -t bearhub-appimage .
|
|
docker run -e BEARHUB_VERSION="$BEARHUB_VERSION" -v ./AppImageBuilder.yml:/build/AppImageBuilder.yml --rm --cap-add=SYS_ADMIN --device /dev/fuse --mount type=bind,source="$(pwd)",target=/build bearhub-appimage
|
|
# volume required to run tests: -v /var/run/docker.sock:/var/run/docker.sock |