Files
compiler-explorer/docs/internal/library_builder_logging.md
Matt Godbolt f2c1e0bd31 The Grand Reformat (#3643)
* The Grand Reformat

- everything made prettier...literally
- some tweaks to include a few more files, including documentation
- minor changes to format style
- some tiny `// prettier-ignore` changes to keep a few things the way we like them
- a couple of super minor tweaks to embedded document types to ensure they format correctly
2022-05-09 23:13:50 -05:00

1.6 KiB

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