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.
1 parent 43f088a commit 5cda07eCopy full SHA for 5cda07e
.gitlab-ci.yml
@@ -28,3 +28,18 @@ test:dev:llvm8:
28
Pkg.instantiate();
29
Pkg.build();
30
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