Skip to content

Commit

Permalink
Fix clang executable name in .travis.yml
Browse files Browse the repository at this point in the history
Change-Id: If6b93a6ef467a9afb62fe91783b0bff8a1e78438
  • Loading branch information
wesm committed Feb 4, 2019
1 parent 1a26043 commit 1988f37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ matrix:
- ARROW_BUILD_WARNING_LEVEL=CHECKIN
before_script:
- if [ $ARROW_CI_CPP_AFFECTED != "1" ]; then exit; fi
- export CC="clang-7.0"
- export CXX="clang++-7.0"
- export CC="clang-7"
- export CXX="clang++-7"
- $TRAVIS_BUILD_DIR/ci/travis_install_linux.sh
- $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh
# If either C++ or Python changed, we must install the C++ libraries
Expand Down Expand Up @@ -254,7 +254,7 @@ matrix:
- if [ $ARROW_CI_JAVA_AFFECTED != "1" ]; then exit; fi
script:
- $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
- name: "Integration w/ OpenJDK 8"
- name: "Integration w/ OpenJDK 8, clang 7"
language: java
os: linux
env: ARROW_TEST_GROUP=integration
Expand All @@ -264,8 +264,8 @@ matrix:
- ARROW_TRAVIS_PLASMA_JAVA_CLIENT=1
before_script:
- if [ $ARROW_CI_INTEGRATION_AFFECTED != "1" ]; then exit; fi
- export CC="clang-7.0"
- export CXX="clang++-7.0"
- export CC="clang-7"
- export CXX="clang++-7"
- $TRAVIS_BUILD_DIR/ci/travis_install_linux.sh
- $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh
- nvm install 11.6
Expand Down

0 comments on commit 1988f37

Please sign in to comment.