aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Add some tests checking the syntax of scriptsPascal Terjan2023-01-291-0/+3
| | | | | The main scripts (iurt/ulri/emi) were not covered by tests, only the libs.
* 0.8.10.8.1Pascal Terjan2023-01-201-0/+1
|
* iurt: Fix detection of missing_dep on DynamicBuildRequiresPascal Terjan2023-01-201-0/+2
| | | | Currently we always get install_deps_failure which is retriable.
* iurt: Fix buildreqs.nosrc.rpm filename on Mageia build systemPascal Terjan2023-01-191-0/+2
|
* Increase robustness when scp fails0.8.0Pascal Terjan2023-01-191-0/+2
| | | | | Do not remove lock file and mark build as done until we copied all the files.
* 0.8.0Pascal Terjan2023-01-191-0/+1
|
* iurt: Add support for DynamicBuildRequiresPascal Terjan2023-01-191-0/+2
| | | | See https://fedoraproject.org/wiki/Changes/DynamicBuildRequires
* 0.7.180.7.18Pascal Terjan2022-08-221-1/+2
|
* Fix false positives of iurt dying on the build machinePascal Terjan2022-08-221-0/+1
| | | | | | | | | | | | | sout("foo || bar") was fetching the output of: ssh -x user@host foo || bar instead of: ssh -x user@host "foo || bar" This means we were considering the remote command to have failed when ssh to the machine to check status was failing.
* fix calling clean_chroot()Thierry Vignaud2022-06-111-0/+2
| | | | | | | The call wasn't matching the function signature thus breaking cleaning chroots. Bug introducted in commit 69e74732d254c75adc20afc25a8729ca568be832 I wonder why nobody saw it before ??
* 0.7.17.20.7.17.2Pascal Terjan2022-05-011-1/+2
|
* Update NEWSPascal Terjan2022-05-011-0/+2
|
* iurt: Fix src.rpm name (mga#30344)0.7.17.1Pascal Terjan2022-04-261-0/+3
|
* Release 0.7.170.7.17Pascal Terjan2022-04-251-0/+1
|
* dump_tree: Add CLI to dump current statusPascal Terjan2022-04-251-0/+1
| | | | This can be used for example by
* ulri: Better maintain in progress buildsPascal Terjan2022-04-251-0/+1
|
* ulri: rely on status.log to know a build completedPascal Terjan2022-04-251-0/+2
| | | | | | | | | | This will fix packages not marked as noarch but having only noarch subpackages, even if we still end up wasting resources. The only risk I see is if the noarch packages get built on all mandatory architectures first, upload starts and other architectures complete in hte middle, however this should not modify the files being uploaded, we use a temporary file and rename so it should be fine.
* iurt: Allow generated src.rpm to change namePascal Terjan2021-11-231-0/+2
| | | | | Some packages use macros for Name and those can change based on the distro version.
* iurt: record the list of generated packagesPascal Terjan2021-07-111-0/+2
|
* 0.7.16Pascal Terjan2020-12-191-0/+1
|
* iurt: use --target noarch for noarch packagesPascal Terjan2020-12-191-0/+3
| | | | We were using --target <arch of the chroot used to build>
* 0.7.150.7.15Pascal Terjan2020-12-131-0/+1
|
* Add arch to all log filesPascal Terjan2020-12-131-0/+1
|
* Update NEWSPascal Terjan2020-12-131-0/+2
|
* 0.7.140.7.14Pascal Terjan2020-06-151-0/+1
|
* Fix updating the chroot...Pascal Terjan2020-06-151-0/+1
|
* Add architecture in botcmd filenamePascal Terjan2020-06-151-0/+2
|
* 0.7.130.7.13Pascal Terjan2020-06-151-0/+1
|
* Move the updating of packages laterPascal Terjan2020-06-151-0/+2
| | | | | The creation of chroot is a mess with various retries, so do it as late as possible when there is no way something gets changed again.
* 0.7.120.7.12Pascal Terjan2020-06-151-0/+1
|
* Move updating the chroot to the right placePascal Terjan2020-06-151-0/+2
|
* 0.7.11Pascal Terjan2020-06-141-0/+1
|
* Update packages after creating chrootPascal Terjan2020-06-141-0/+1
| | | | | This is useful when building for updates_testing or with additional media as basesystem/urpmi/... were installed without those media.
* ulri: sort file names in mailThierry Vignaud2020-04-271-0/+1
|
* Move check_{no,}arch to a new RPM modulePascal Terjan2020-03-151-0/+2
| | | | They have nothing to do with the config and work on an RPM file.
* Commit forgotten NEWS filePascal Terjan2020-02-151-0/+2
|
* 0.7.100.7.10Pascal Terjan2020-01-111-0/+1
|
* Give --target to rpmbuildPascal Terjan2020-01-091-0/+1
| | | | This fixes wrong isa name when building for armv7hl on aarch64 machine.
* Allow - in host when parsing lock file namePascal Terjan2020-01-091-0/+2
|
* Release 0.7.90.7.9Pascal Terjan2019-11-091-0/+1
|
* Use setarch linux32 rather than target archPascal Terjan2019-11-091-2/+2
| | | | | | | | $ setarch --list uname26 linux32 linux64 armv7l
* Always call setarchPascal Terjan2019-11-091-0/+2
| | | | | | | It used to be called when target is i586 to allow building for i586 on x86_64. Calling it on all architectures should have no impact when the architecture is the same, and this allows to build also for 32bit arm on 64bit arm host.
* emi: store uploaded architectures in .uploadPascal Terjan2019-11-011-0/+3
| | | | | This allows to know which non mandatory architectures are done and will allow to surface it on the web UI.
* Revert "fix timeout message when killing for other reason"Thierry Vignaud2019-08-071-2/+0
| | | | | | | | This reverts commit 0d78ec170900df342301a5bbe44e7ca883cc0db1. Rationale: That will not work as intended b/c the message is set in the child process while it gets logged in the parent
* fix timeout message when killing for other reasonThierry Vignaud2019-07-201-0/+2
|
* Create a 0.7.8.1 after merge0.7.8.1Pascal Terjan2018-10-161-0/+3
|
* 0.7.8Pascal Terjan2018-10-161-0/+1
|
* Use SIGTERM to kill iurt and install a handlerPascal Terjan2018-10-161-0/+2
|
* Kill processes before unmounting in clean_chrootPascal Terjan2018-10-161-0/+1
|
* Ignore failures when cancelling buildsPascal Terjan2018-10-161-0/+2
| | | | | This will avoid listing other architectures as failed, and giving some confusing logs.