Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
qihqi committed Sep 27, 2024
1 parent 172800b commit fe8f3ac
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions infra/ansible/config/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
release_env:
common:
# Force GCC because clang/bazel has issues.
CC: gcc-10
CXX: g++-10
# CC: "clang-{{ clang_version }}"
# CXX: "clang++-{{ clang_version }}"
# CC: gcc-10
#CXX: g++-10
CC: "clang-{{ clang_version }}"
CXX: "clang++-{{ clang_version }}"
LD_LIBRARY_PATH: "$LD_LIBRARY_PATH:/usr/local/lib"

tpu:
Expand All @@ -24,8 +24,10 @@ build_env:
# Set explicitly to 0 as setup.py defaults this flag to true if unset.
BUILD_CPP_TESTS: "{{ build_cpp_tests }}"
# Force GCC because clang/bazel has issues.
CC: gcc-10
CXX: g++-10
# CC: gcc-10
# CXX: g++-10
CC: "clang-{{ clang_version }}"
CXX: "clang++-{{ clang_version }}"
PYTORCH_BUILD_NUMBER: 1
TORCH_XLA_VERSION: "{{ package_version }}"
PYTORCH_BUILD_VERSION: "{{ package_version }}"
Expand Down

0 comments on commit fe8f3ac

Please sign in to comment.