Browse Source

Skipping deps is not an option

default_compile_flags
vector-of-bool 5 years ago
parent
commit
fc5a461b8c
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      tools/ci.py

+ 1
- 6
tools/ci.py View File

'-T', '-T',
help='The toolchain to use for the CI process', help='The toolchain to use for the CI process',
required=True) required=True)
parser.add_argument(
'--skip-deps',
action='store_true',
help='If specified, will skip getting and building '
'dependencies. (They must already be present)')
args = parser.parse_args(argv) args = parser.parse_args(argv)


opts = CIOptions(toolchain=args.toolchain, skip_deps=args.skip_deps)
opts = CIOptions(toolchain=args.toolchain)


if args.bootstrap_with == 'build': if args.bootstrap_with == 'build':
_do_bootstrap_build(opts) _do_bootstrap_build(opts)

Loading…
Cancel
Save