File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 24
24
# We need compile command database in order to perform clang-tidy check. So,
25
25
# in order to perform configure step we need to setup llvm-dev package. This
26
26
# env variable used to specify desired version of it
27
- LLVM_VERSION : 12
27
+ LLVM_VERSION : 13
28
28
29
29
jobs :
30
30
clang-format-and-tidy :
Original file line number Diff line number Diff line change 32
32
- cron : 0 0 * * *
33
33
34
34
env :
35
- LLVM_VERSION : 12
35
+ LLVM_VERSION : 13
36
36
37
37
jobs :
38
38
build_and_test_linux :
Original file line number Diff line number Diff line change 29
29
- cron : 0 0 * * *
30
30
31
31
env :
32
- LLVM_VERSION : 12
32
+ LLVM_VERSION : 13
33
33
34
34
jobs :
35
35
build_and_test :
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ compiler:
43
43
env :
44
44
global :
45
45
- MAKEFLAGS="-j2"
46
- - LLVM_VERSION=12
46
+ - LLVM_VERSION=13
47
47
matrix :
48
48
- BUILD_TYPE=Release BUILD_EXTERNAL=1 SHARED_LIBS=ON MAKE_TARGETS="" MAKE_TEST_TARGET="test"
49
49
- BUILD_TYPE=Debug BUILD_EXTERNAL=1 SHARED_LIBS=ON MAKE_TARGETS="" MAKE_TEST_TARGET="test"
@@ -58,11 +58,11 @@ matrix:
58
58
include :
59
59
- os : osx
60
60
env : BUILD_TYPE=Release BUILD_EXTERNAL=0 MAKE_TARGETS="llvm-spirv" MAKE_TEST_TARGET="check-llvm-spirv"
61
- osx_image : xcode12
61
+ osx_image : xcode13
62
62
63
63
- os : osx
64
64
env : BUILD_TYPE=Debug BUILD_EXTERNAL=0 MAKE_TARGETS="llvm-spirv" MAKE_TEST_TARGET="check-llvm-spirv"
65
- osx_image : xcode12
65
+ osx_image : xcode13
66
66
67
67
- compiler : clang
68
68
env : BUILD_TYPE=Release BUILD_EXTERNAL=1 SHARED_LIBS=OFF MAKE_TARGETS="" MAKE_TEST_TARGET="test"
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.3 )
2
2
3
- set (BASE_LLVM_VERSION 12 .0.0 )
3
+ set (BASE_LLVM_VERSION 13 .0.0 )
4
4
set (LLVM_SPIRV_VERSION ${BASE_LLVM_VERSION} .0 )
5
5
6
6
option (LLVM_SPIRV_INCLUDE_TESTS
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ The translator can be built with the latest(nightly) package of LLVM. For Ubuntu
31
31
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
32
32
sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main"
33
33
sudo apt-get update
34
- sudo apt-get install llvm-12 -dev llvm-12 -tools clang-12 libclang-12 -dev
34
+ sudo apt-get install llvm-13 -dev llvm-13 -tools clang-13 libclang-13 -dev
35
35
```
36
36
The installed version of LLVM will be used by default for out-of-tree build of the translator.
37
37
```
@@ -107,7 +107,7 @@ make test
107
107
```
108
108
This requires that the ` -DLLVM_SPIRV_INCLUDE_TESTS=ON ` argument is
109
109
passed to CMake during the build step. Additionally,
110
- ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-12 /build/utils/lit/lit.py" ` is
110
+ ` -DLLVM_EXTERNAL_LIT="/usr/lib/llvm-13 /build/utils/lit/lit.py" ` is
111
111
needed when building with a pre-installed version of LLVM.
112
112
113
113
The translator test suite can be disabled by passing
You can’t perform that action at this time.
0 commit comments