mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-02 13:03:31 +00:00
The issue was introduced with the commit, which builds Open5GS from
local sources instead of downloading them each time from Github.
Fixes: d2cbcf711 ("[build] Use local sources to build applications (#1583)")
19 lines
437 B
YAML
19 lines
437 B
YAML
version: '3'
|
|
|
|
services:
|
|
test:
|
|
image: ${USER}/${DIST-ubuntu}-${TAG-latest}-open5gs-build
|
|
depends_on:
|
|
- mongodb
|
|
- build
|
|
environment:
|
|
DB_URI: mongodb://mongodb/open5gs
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- "/dev/net/tun:/dev/net/tun"
|
|
sysctls:
|
|
- net.ipv6.conf.all.disable_ipv6=0
|
|
hostname: open5gs-test
|
|
command: /bin/bash -c "/root/setup.sh; cd /open5gs/build && meson test -v"
|