The library build status is accessible from https://conan.compiler-explorer.com/

build prerequisites

The build process of libraries (started by https://github.com/compiler-explorer/infra/blob/main/admin-daily-builds.sh) has a couple of safeguards to not build libraries allday everyday, namely:

manually delete logging

You have to login to the conan instance and delete records from the sqlite database responsible for keeping the logging.

Example:

ce conan login
sudo -u ce sqlite3 /home/ce/.conan_server/buildslogs.db
delete from latest where library='unifex' and success=0;

You can find more info about the database in https://github.com/compiler-explorer/conanproxy/blob/main/build-logging.js