File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 10
10
# ##############################################################################
11
11
12
12
sudo : required
13
- dist : xenial
13
+ dist : bionic
14
14
language : cpp
15
15
16
16
before_install :
17
17
- sudo scripts/travis_deps.sh
18
18
19
19
script : >
20
- CXX=/usr/lib/llvm-8 /bin/clang++
21
- CC=/usr/lib/llvm-8 /bin/clang
22
- ./configure --with-llvm=/usr/lib/llvm-8 &&
20
+ CXX=/usr/lib/llvm-9 /bin/clang++
21
+ CC=/usr/lib/llvm-9 /bin/clang
22
+ ./configure --with-llvm=/usr/lib/llvm-9 &&
23
23
make -j2 &&
24
24
make check
25
25
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ set -eux
16
16
17
17
apt-get update -qq
18
18
19
- # The Travis-CI Ubuntu 16 .04 ("xenial ") build environment has LLVM and Clang
19
+ # The Travis-CI Ubuntu 18 .04 ("bionic ") build environment has LLVM and Clang
20
20
# preinstalled. They interfere with our installations of these packages.
21
21
apt-get remove -y -qq \
22
22
clang \
@@ -28,23 +28,23 @@ apt-get install -y -qq \
28
28
software-properties-common \
29
29
wget
30
30
31
- # Set up for installing LLVM 8 .0.
31
+ # Set up for installing LLVM 9 .0.
32
32
# See <https://wiki.ubuntu.com/ToolChain>.
33
33
# See <http://llvm.org/apt/>.
34
34
add-apt-repository -y \
35
35
ppa:ubuntu-toolchain-r/test
36
36
add-apt-repository -y \
37
- ' deb http://apt.llvm.org/xenial / llvm-toolchain-xenial-8 main'
37
+ ' deb http://apt.llvm.org/bionic / llvm-toolchain-bionic-9 main'
38
38
wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
39
39
apt-get update -qq
40
40
41
- # Install LLVM 8 .0. See file "INSTALL.md".
41
+ # Install LLVM 9 .0. See file "INSTALL.md".
42
42
apt-get install -y -qq \
43
- llvm-8 \
44
- llvm-8 -dev \
45
- clang-8 \
46
- libclang-8 -dev \
47
- clang-format-8 \
43
+ llvm-9 \
44
+ llvm-9 -dev \
45
+ clang-9 \
46
+ libclang-9 -dev \
47
+ clang-format-9 \
48
48
libedit-dev
49
49
50
50
# Install other C-Reduce dependencies. See file "INSTALL.md".
You can’t perform that action at this time.
0 commit comments