File TODO changed (mode: 100644) (index 7de126e..a2fa103) |
53 |
53 |
Seems we are cloning the namespace, before knowing if the user can push! |
Seems we are cloning the namespace, before knowing if the user can push! |
54 |
54 |
|
|
55 |
55 |
== FOR OTHER RELEASE == |
== FOR OTHER RELEASE == |
|
56 |
|
[ ] Promise to never relase version 2.0 - to avoid setbacks for upgrades. |
56 |
57 |
[ ] builder: Should we add '.' to PATH. If I put 'configure' it will not be |
[ ] builder: Should we add '.' to PATH. If I put 'configure' it will not be |
57 |
58 |
executed, I have to put './configure'. |
executed, I have to put './configure'. |
58 |
59 |
[ ] Offer RGFS for all user content. |
[ ] Offer RGFS for all user content. |
File scripts/worker.php changed (mode: 100644) (index 8e64b6a..f3ac73b) |
... |
... |
function start_worker_build_tools($job, &$reason, &$reason2) |
492 |
492 |
. "\n" |
. "\n" |
493 |
493 |
. ' local old_dir=${PWD}' . "\n" |
. ' local old_dir=${PWD}' . "\n" |
494 |
494 |
. ' cd "${dir}"' . "\n" |
. ' cd "${dir}"' . "\n" |
|
495 |
|
. ' sha256sum $(< "${pkg_list_file}")' . "\n" |
495 |
496 |
. ' rg_op_s rpmsign --define "_gpg_name repo_id-${pkg_repo_id}" \\' . "\n" |
. ' rg_op_s rpmsign --define "_gpg_name repo_id-${pkg_repo_id}" \\' . "\n" |
496 |
497 |
. ' --define "_gpg_sign_cmd_extra_args --no-autostart --batch" \\' . "\n" |
. ' --define "_gpg_sign_cmd_extra_args --no-autostart --batch" \\' . "\n" |
497 |
498 |
. ' --resign $(< "${pkg_list_file}") </dev/null' . "\n" |
. ' --resign $(< "${pkg_list_file}") </dev/null' . "\n" |
|
... |
... |
function start_worker($job) |
1465 |
1466 |
. ' date +%s > /mnt/status/build.sh.stop' . "\n" // TODO: not read and not exposed? |
. ' date +%s > /mnt/status/build.sh.stop' . "\n" // TODO: not read and not exposed? |
1466 |
1467 |
. ' if [ "${E}" != "0" ]; then' . "\n" |
. ' if [ "${E}" != "0" ]; then' . "\n" |
1467 |
1468 |
. ' echo "`date`: DEBUG: build.sh exited with code ${E}"' . "\n" |
. ' echo "`date`: DEBUG: build.sh exited with code ${E}"' . "\n" |
1468 |
|
. ' ERR=$(< ~/rg_op.err)' . "\n" |
|
|
1469 |
|
. ' ERR="build.sh returned ${E}"' . "\n" |
1469 |
1470 |
. ' break' . "\n" |
. ' break' . "\n" |
1470 |
1471 |
. ' fi' . "\n" |
. ' fi' . "\n" |
1471 |
1472 |
. "\n" |
. "\n" |
|
... |
... |
function start_worker($job) |
1488 |
1489 |
. ' E=${?}' . "\n" |
. ' E=${?}' . "\n" |
1489 |
1490 |
. ' date +%s > /mnt/T_RPMS_END' . "\n" |
. ' date +%s > /mnt/T_RPMS_END' . "\n" |
1490 |
1491 |
. ' if [ "${E}" != "0" ]; then' . "\n" |
. ' if [ "${E}" != "0" ]; then' . "\n" |
1491 |
|
. ' ERR=$(< ~/rg_op.err)' . "\n" |
|
|
1492 |
|
. ' ERR="build_rpms.sh returned ${E}"' . "\n" |
1492 |
1493 |
. ' break' . "\n" |
. ' break' . "\n" |
1493 |
1494 |
. ' fi' . "\n" |
. ' fi' . "\n" |
1494 |
1495 |
. "\n" |
. "\n" |
|
... |
... |
function start_worker($job) |
1510 |
1511 |
. ' E=${?}' . "\n" |
. ' E=${?}' . "\n" |
1511 |
1512 |
. ' date +%s > /mnt/T_REPO_END' . "\n" |
. ' date +%s > /mnt/T_REPO_END' . "\n" |
1512 |
1513 |
. ' if [ "${E}" != "0" ]; then' . "\n" |
. ' if [ "${E}" != "0" ]; then' . "\n" |
1513 |
|
. ' ERR=$(< ~/rg_op.err)' . "\n" |
|
|
1514 |
|
. ' ERR="build_repo.sh returned ${E}"' . "\n" |
1514 |
1515 |
. ' break' . "\n" |
. ' break' . "\n" |
1515 |
1516 |
. ' fi' . "\n" |
. ' fi' . "\n" |
1516 |
1517 |
. ' fi' . "\n" |
. ' fi' . "\n" |