Skip to content

Commit 5678a14

Browse files
kulpemilio
authored andcommitted
ci: Use llvm-5.0.1 to simplify target triple
1 parent b424c17 commit 5678a14

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ci/before_install.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ set -x
99
set -o pipefail
1010

1111
function llvm_linux_target_triple() {
12-
case "$1" in
13-
5.*) echo "linux-x86_64-ubuntu14.04" ;;
14-
*) echo "x86_64-linux-gnu-ubuntu-14.04" ;;
15-
esac
12+
echo "x86_64-linux-gnu-ubuntu-14.04"
1613
}
1714

1815
function llvm_macos_target_triple() {
@@ -29,6 +26,7 @@ function llvm_version_triple() {
2926
3.6) echo "3.6.2" ;;
3027
3.7) echo "3.7.1" ;;
3128
3.8) echo "3.8.1" ;;
29+
5.0) echo "5.0.1" ;;
3230
# By default, take the .0 patch release
3331
*) echo "$1.0" ;;
3432
esac

0 commit comments

Comments
 (0)