소스 검색

Skipping deps is not an option

default_compile_flags
vector-of-bool 5 년 전
부모
커밋
fc5a461b8c
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. +1
    -6
      tools/ci.py

+ 1
- 6
tools/ci.py 파일 보기

@@ -70,14 +70,9 @@ def main(argv: Sequence[str]) -> int:
'-T',
help='The toolchain to use for the CI process',
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)

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

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

Loading…
취소
저장