Skip to content

Commit

Permalink
cmake: Upgrade to LLVM 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeySotkin committed May 31, 2019
1 parent b21a6ca commit cafdc8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ script:
after_success:
# Create tarball for deployment
- if [[ "${BUILD_EXTERNAL}" == "1" && "${SHARED_LIBS}" == "ON" && "${repo_token}" != "" ]]; then
export TAG=7.0.1-1;
export TAG=7.1.0-1;
export TARBALL=SPIRV-LLVM-Translator-${TAG}-${TRAVIS_OS_NAME}-${BUILD_TYPE}.zip;
cd ../install && find . -print | zip -@ ${TARBALL};
fi
Expand All @@ -132,6 +132,7 @@ deploy:
branch: llvm_release_70
condition: ${BUILD_EXTERNAL} == 1 && ${SHARED_LIBS} == ON && ${repo_token}
file: ${TARBALL}
name: Binaries linked against LLVM 7.1.0
skip_cleanup: true
overwrite: false
prerelease: false
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
)
endif(LLVM_INCLUDE_TESTS)

find_package(LLVM 7.0.0 REQUIRED
find_package(LLVM 7.1 REQUIRED
COMPONENTS
Analysis
BitReader
Expand Down

0 comments on commit cafdc8a

Please sign in to comment.