Merge pull request #5919 from BOINC/dpa_buda2

fix link to doc
This commit is contained in:
Vitalii Koshura 2024-11-26 01:47:44 +01:00 committed by GitHub
commit 40f8fd8642
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -39,7 +39,7 @@ function submit_form($user) {
containing the input file(s) for that job containing the input file(s) for that job
and an optional file <code>cmdline</code> and an optional file <code>cmdline</code>
containing command-line arguments. containing command-line arguments.
See <a href=https://github.com/BOINC/boinc/wiki/Docker-apps>more details</a></small>. <a href=https://github.com/BOINC/boinc/wiki/BUDA-job-submission>Details</a></small>.
"; ";
page_head("Submit jobs to $app ($variant)"); page_head("Submit jobs to $app ($variant)");
form_start('buda_submit.php'); form_start('buda_submit.php');
@ -74,11 +74,12 @@ function unzip_batch_file($user, $batch_file) {
return $batch_dir_name; return $batch_dir_name;
} }
// check validity of batch dir. // Scan a batch dir.
// top level should have only infiles (shared) // Check its validity:
// job dirs should have only remaining infiles and possibly cmdline // - Top level can have only infiles (shared)
// - Subdirs (job dirs) can have only remaining infiles and possibly cmdline
// //
// return struct describing the batch, and the md5/size of files // Return a structure describing its contents, and the md5/size of files
// //
function parse_batch_dir($batch_dir, $variant_desc) { function parse_batch_dir($batch_dir, $variant_desc) {
$input_files = $variant_desc->input_file_names; $input_files = $variant_desc->input_file_names;