summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorJerryShih <bignose1007@gmail.com>2019-02-04 08:50:35 -0800
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2019-02-04 08:53:47 -0800
commit73db487a8eaeb4dad2c5506b546e1441dbb05ebb (patch)
tree9ee650936c12bacb86b3eae30f91b2e91e1b5460 /.circleci/config.yml
parentdc528fd734df1ad7ee1e63656ea13d71536296b7 (diff)
downloadpytorch-73db487a8eaeb4dad2c5506b546e1441dbb05ebb.tar.gz
pytorch-73db487a8eaeb4dad2c5506b546e1441dbb05ebb.tar.bz2
pytorch-73db487a8eaeb4dad2c5506b546e1441dbb05ebb.zip
Update the cmake build configuration for AppleClang compiler (#15820)
Summary: This pr try to merge the https://github.com/pytorch/pytorch/pull/11563 again and fix the linking error in https://github.com/pytorch/pytorch/pull/14837. Pull Request resolved: https://github.com/pytorch/pytorch/pull/15820 Differential Revision: D13942024 Pulled By: ezyang fbshipit-source-id: dc6d1e9c4b0f177914f3745665244272a03ce33c
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index a15c937f42..a17539fce6 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -184,7 +184,7 @@ setup_ci_environment: &setup_ci_environment
eval $(aws ecr get-login --region us-east-1 --no-include-email)
macos_brew_update: &macos_brew_update
- name: Brew update and install moreutils and expect
+ name: Brew update and install moreutils, expect and libomp
no_output_timeout: "1h"
command: |
set -ex
@@ -198,6 +198,7 @@ macos_brew_update: &macos_brew_update
brew install moreutils
brew link parallel --overwrite
brew install expect
+ brew install libomp
##############################################################################
@@ -246,7 +247,7 @@ pytorch_linux_test_defaults: &pytorch_linux_test_defaults
<<: *setup_ci_environment
- run:
name: Test
- no_output_timeout: "1h"
+ no_output_timeout: "90m"
command: |
set -e
export COMMIT_DOCKER_IMAGE=${DOCKER_IMAGE}-${CIRCLE_SHA1}