mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-11 06:16:03 +00:00
31ce4ed389
* feat: ios build * chore: build .deb and .rpm * chore: use gcc-10 * fix: go tools and mobile versions
12 lines
296 B
Bash
Executable File
12 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run -it --rm \
|
|
--cap-add SYS_ADMIN \
|
|
--security-opt apparmor:unconfined \
|
|
--device /dev/fuse \
|
|
-u jenkins:$(getent group $(whoami) | cut -d: -f3) \
|
|
-v "${PWD}:/go-waku" \
|
|
-w /go-waku \
|
|
statusteam/gowaku-linux-pkgs:latest \
|
|
/go-waku/scripts/linux/build-pkgs.sh
|