Page MenuHomeVyOS Platform

vyos-build: VyOS Images have stopped building
Closed, ResolvedPublicBUG

Description

VyOS images stopped building at Dec 30th due to build failures. Subsequent build attempts also failed.

https://ci.vyos.net/job/vyos-build/

Details

Difficulty level
Unknown (require assessment)
Version
vyos-build CI run #759ff
Why the issue appeared?
Will be filled on close

Event Timeline

Problem is that two new packages (mdns-repeater and udp-bcast-relay) are build on the CI server, but somehow do not show up in the package repository at http://dev.packages.vyos.net/vyos/pool/main/ which is used during build.

A workaround for local ISO builds will be:

cd vyos-build
git submodule update --init packages/mdns-repeater
git submodule update --init packages/udp-broadcast-relay

cd packages/mdns-repeater
debuild -us -uc

cd ../udp-broadcast-relay
debuild -us -uc

cd ..
sudo make iso

@UnicronNL is the Jenkins CI master if I remember correctly.

@c-po Thank you for the quick response and especially for the workaround! This was of great value...