We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9561624 + 1551491 commit 1b7ca62Copy full SHA for 1b7ca62
.gitlab-ci.yml
@@ -12,3 +12,18 @@ include:
12
coverage:
13
only:
14
- 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