Skip to content
Snippets Groups Projects
Commit 2b20d94d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[boostrap] Allow bootstrapping using the base environment

parent de6553a0
No related branches found
No related tags found
No related merge requests found
Pipeline #26811 canceled
...@@ -412,13 +412,13 @@ if __name__ == '__main__': ...@@ -412,13 +412,13 @@ if __name__ == '__main__':
]) ])
conda_bld_path = os.path.join(args.conda_root, 'conda-bld') conda_bld_path = os.path.join(args.conda_root, 'conda-bld')
run_cmdline([conda_bin, 'index', conda_bld_path]) run_cmdline([conda_bin, 'index', conda_bld_path])
# add the locally build directory before defaults, boot from there
channels = get_channels(public=True, stable=True, server=_SERVER, channels = get_channels(public=True, stable=True, server=_SERVER,
intranet=True) + ['defaults'] intranet=True) + ['defaults']
channels = ['--override-channels'] + \ channels = ['--override-channels'] + \
['--channel=' + conda_bld_path] + \ ['--channel=' + conda_bld_path] + \
['--channel=%s' % k for k in channels] ['--channel=%s' % k for k in channels]
run_cmdline([conda_bin, 'create'] + conda_verbosity + channels + \ conda_cmd = 'install' if args.envname in ('base', 'root') else 'create'
run_cmdline([conda_bin, conda_cmd] + conda_verbosity + channels + \
['-n', args.envname, 'bob.devtools']) ['-n', args.envname, 'bob.devtools'])
elif args.command == 'channel': elif args.command == 'channel':
...@@ -427,9 +427,9 @@ if __name__ == '__main__': ...@@ -427,9 +427,9 @@ if __name__ == '__main__':
channels = get_channels(public=True, channels = get_channels(public=True,
stable=(args.tag is not None), stable=(args.tag is not None),
server=_SERVER, intranet=True) + ['defaults'] server=_SERVER, intranet=True) + ['defaults']
channels = ['--override-channels'] + \ channels = ['--override-channels'] + ['--channel=%s' % k for k in channels]
['--channel=%s' % k for k in channels] conda_cmd = 'install' if args.envname in ('base', 'root') else 'create'
run_cmdline([conda_bin, 'create'] + conda_verbosity + channels + \ run_cmdline([conda_bin, conda_cmd] + conda_verbosity + channels + \
['-n', args.envname, 'bob.devtools']) ['-n', args.envname, 'bob.devtools'])
# print conda information for debugging purposes # print conda information for debugging purposes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment