mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
37c51cc25f
Make the docker-related logic for doing a local packaged build on Linux match with the Jenkins CI build for Linux. Also fix the problems with packaged builds for Linux (local or CI) where gstreamer errors were displayed in the terminal shortly after app start/login and there was no sound output.
13 lines
317 B
Bash
Executable File
13 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Workaround for permissions problems with `jenkins` user inside the container
|
|
cp -R . ~/status-desktop
|
|
cd ~/status-desktop
|
|
|
|
git clean -dfx && rm -rf vendor/* && make -j4 V=1 update
|
|
make V=1 pkg
|
|
|
|
# Make AppImage build accessible to the docker host
|
|
cd - && cp -R ~/status-desktop/pkg .
|
|
chmod -R 775 ./pkg
|