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

[bootstrap] Always use only public channels to bootstrap (closes #11)

parent 07561e27
No related branches found
No related tags found
1 merge request!7[bootstrap] Always use only public channels to bootstrap (closes #11)
Pipeline #26374 passed
...@@ -360,10 +360,6 @@ if __name__ == '__main__': ...@@ -360,10 +360,6 @@ if __name__ == '__main__':
os.path.realpath(os.path.join(os.curdir, 'miniconda'))), os.path.realpath(os.path.join(os.curdir, 'miniconda'))),
help='The location where we should install miniconda ' \ help='The location where we should install miniconda ' \
'[default: %(default)s]') '[default: %(default)s]')
parser.add_argument('-V', '--visibility',
choices=['public', 'internal', 'private'],
default=os.environ.get('CI_PROJECT_VISIBILITY', 'public'),
help='The visibility level for this project [default: %(default)s]')
parser.add_argument('-t', '--tag', parser.add_argument('-t', '--tag',
default=os.environ.get('CI_COMMIT_TAG', None), default=os.environ.get('CI_COMMIT_TAG', None),
help='If building a tag, pass it with this flag [default: %(default)s]') help='If building a tag, pass it with this flag [default: %(default)s]')
...@@ -428,8 +424,7 @@ if __name__ == '__main__': ...@@ -428,8 +424,7 @@ if __name__ == '__main__':
elif args.command == 'channel': elif args.command == 'channel':
# installs from channel # installs from channel
channels = get_channels( channels = get_channels(public=True,
public=(args.visibility == 'public'),
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'] + \
......
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