Skip to content

Commit 1b7ca62

Browse files
authored
Merge pull request #153 from maleadt/tb/ci_llvm8
CI test job for LLVM 8.0
2 parents 9561624 + 1551491 commit 1b7ca62

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
@@ -12,3 +12,18 @@ include:
1212
coverage:
1313
only:
1414
- master
15+
16+
test:dev:llvm8:
17+
stage: test
18+
image: ubuntu:18.04
19+
script:
20+
- apt update
21+
- apt install -y git build-essential libatomic1 python gfortran perl wget m4 cmake pkg-config
22+
- git clone https://github.com/JuliaLang/julia
23+
- make -C julia -j$(nproc) install LLVM_VER=8.0.0 USE_BINARYBUILDER_LLVM=0
24+
- ./julia/julia -e 'using InteractiveUtils;
25+
versioninfo()'
26+
- ./julia/julia --project -e 'using Pkg;
27+
Pkg.instantiate();
28+
Pkg.build();
29+
Pkg.test(; coverage=true);'

0 commit comments

Comments
 (0)