mirror of
https://github.com/clearml/clearml
synced 2025-04-04 13:01:23 +00:00
Fixes bug when using --cwd and --file with clearml-task Co-authored-by: dimda <dimda@dtu.dk>
This commit is contained in:
parent
006741645f
commit
956e7e4478
@ -92,7 +92,6 @@ class CreateAndPopulate(object):
|
||||
repo = None
|
||||
else:
|
||||
folder = None
|
||||
|
||||
if raise_on_missing_entries and not base_task_id:
|
||||
if not script:
|
||||
raise ValueError("Entry point script not provided")
|
||||
@ -168,7 +167,6 @@ class CreateAndPopulate(object):
|
||||
and not self.repo and (
|
||||
not repo_info or not repo_info.script or not repo_info.script.get('repository')):
|
||||
raise ValueError("Standalone script detected \'{}\', but no requirements provided".format(self.script))
|
||||
|
||||
if dry_run:
|
||||
task = None
|
||||
task_state = dict(
|
||||
@ -204,7 +202,6 @@ class CreateAndPopulate(object):
|
||||
|
||||
# clear the script section
|
||||
task_state['script'] = {}
|
||||
|
||||
if repo_info:
|
||||
task_state['script']['repository'] = repo_info.script['repository']
|
||||
task_state['script']['version_num'] = repo_info.script['version_num']
|
||||
@ -216,15 +213,15 @@ class CreateAndPopulate(object):
|
||||
task_state['script']['requirements'] = repo_info.script.get('requirements') or {}
|
||||
if self.cwd:
|
||||
self.cwd = self.cwd
|
||||
cwd = self.cwd if Path(self.cwd).is_dir() else (
|
||||
Path(repo_info.script['repo_root']) / self.cwd).as_posix()
|
||||
cwd = (Path(repo_info.script['repo_root']) / self.cwd).as_posix()
|
||||
|
||||
if not Path(cwd).is_dir():
|
||||
raise ValueError("Working directory \'{}\' could not be found".format(cwd))
|
||||
cwd = Path(cwd).relative_to(repo_info.script['repo_root']).as_posix()
|
||||
entry_point = \
|
||||
Path(repo_info.script['repo_root']) / repo_info.script['working_dir'] / repo_info.script[
|
||||
'entry_point']
|
||||
entry_point = entry_point.relative_to(cwd).as_posix()
|
||||
cwd = Path(cwd).relative_to(repo_info.script['repo_root']).as_posix()
|
||||
task_state['script']['entry_point'] = entry_point or ""
|
||||
task_state['script']['working_dir'] = cwd or "."
|
||||
elif self.repo:
|
||||
@ -260,7 +257,6 @@ class CreateAndPopulate(object):
|
||||
# standalone task
|
||||
task_state['script']['entry_point'] = self.script or ""
|
||||
task_state['script']['working_dir'] = '.'
|
||||
|
||||
# update requirements
|
||||
reqs = []
|
||||
if self.requirements_file:
|
||||
@ -345,7 +341,6 @@ class CreateAndPopulate(object):
|
||||
if task_state['script']['diff'] and not task_state['script']['diff'].endswith('\n'):
|
||||
task_state['script']['diff'] += '\n'
|
||||
task_state['script']['diff'] += task_init_patch
|
||||
|
||||
# set base docker image if provided
|
||||
if self.docker:
|
||||
if dry_run:
|
||||
|
Loading…
Reference in New Issue
Block a user