Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 957e1d4

Browse files
committedMar 30, 2022
GH Actions: Add LLVM 14.0.0 job
1 parent 2e982a4 commit 957e1d4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎.github/workflows/supported_llvm_versions.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ jobs:
77
fail-fast: false
88
matrix:
99
include:
10+
- job_name: Ubuntu 18.04, LLVM 14, latest LDC beta
11+
os: ubuntu-18.04
12+
host_dc: ldc-beta
13+
llvm_version: "14.0.0"
14+
cmake_opts: ""
1015
- job_name: Ubuntu 18.04, LLVM 13, latest LDC beta
1116
os: ubuntu-18.04
1217
host_dc: ldc-beta
@@ -89,12 +94,14 @@ jobs:
8994
echo "Already cached"
9095
exit 0
9196
fi
97+
version='${{ matrix.llvm_version }}'
9298
if [[ '${{ runner.os }}' == 'macOS' ]]; then
9399
suffix='x86_64-apple-darwin'
100+
elif [[ "$version" == 14.* ]]; then
101+
suffix='x86_64-linux-gnu-ubuntu-18.04'
94102
else
95103
suffix='x86_64-linux-gnu-ubuntu-16.04'
96104
fi
97-
version='${{ matrix.llvm_version }}'
98105
if [[ "$version" =~ ^(1.|9)\. ]]; then
99106
llvm_url="https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/clang+llvm-$version-$suffix.tar.xz"
100107
else

0 commit comments

Comments
 (0)
Please sign in to comment.