Skip to content

Commit 5cda07e

Browse files
committed
Add CI for LLVM 9.0rc5.
1 parent 43f088a commit 5cda07e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.gitlab-ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,18 @@ test:dev:llvm8:
2828
Pkg.instantiate();
2929
Pkg.build();
3030
Pkg.test(; coverage=true);'
31+
32+
test:dev:llvm9:
33+
stage: test
34+
image: ubuntu:18.04
35+
script:
36+
- apt update
37+
- apt install -y git build-essential libatomic1 python gfortran perl wget m4 cmake pkg-config
38+
- git clone https://github.com/JuliaLang/julia
39+
- make -C julia -j$(nproc) install LLVM_VER=9.0.0rc5 USE_BINARYBUILDER_LLVM=0
40+
- ./julia/julia -e 'using InteractiveUtils;
41+
versioninfo()'
42+
- ./julia/julia --project -e 'using Pkg;
43+
Pkg.instantiate();
44+
Pkg.build();
45+
Pkg.test(; coverage=true);'

0 commit comments

Comments
 (0)