Commit 9c09c0d3 authored by Jeremy Reizenstein's avatar Jeremy Reizenstein Committed by Facebook GitHub Bot
Browse files

conda timeout in CI

Summary: Conda build command can be very slow at resolving dependencies with PyTorch 1.8. I extended the timeout for this in the tests. Here do the same for the builds.

Reviewed By: patricklabatut

Differential Revision: D29131188

fbshipit-source-id: 554e694f0f8aa7509141016720b1e9019177b214
parent 354a1808
......@@ -122,7 +122,10 @@ jobs:
- checkout
# This is building with cuda but no gpu present,
# so we aren't running the tests.
- run: MAX_JOBS=15 TEST_FLAG=--no-test packaging/build_conda.sh
- run:
name: build
no_output_timeout: 20m
command: MAX_JOBS=15 TEST_FLAG=--no-test packaging/build_conda.sh
- store_artifacts:
path: /opt/conda/conda-bld/linux-64
- persist_to_workspace:
......
......@@ -122,7 +122,10 @@ jobs:
- checkout
# This is building with cuda but no gpu present,
# so we aren't running the tests.
- run: MAX_JOBS=15 TEST_FLAG=--no-test packaging/build_conda.sh
- run:
name: build
no_output_timeout: 20m
command: MAX_JOBS=15 TEST_FLAG=--no-test packaging/build_conda.sh
- store_artifacts:
path: /opt/conda/conda-bld/linux-64
- persist_to_workspace:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment