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 270249c + 90bc383 commit 1b1807aCopy full SHA for 1b1807a
.gitlab-ci.yml
@@ -8,6 +8,10 @@ cache:
8
paths:
9
- .julia/
10
11
+stages:
12
+ - build
13
+ - test
14
+
15
build:
16
stage: build
17
tags:
@@ -18,12 +22,7 @@ build:
18
22
- export PATH="$(pwd)/julia-1.1.1/bin:$PATH"
19
23
- julia -e "using InteractiveUtils;
20
24
versioninfo()"
21
- - julia --project -e "using Pkg;
- Pkg.update();
- Pkg.instantiate();
- Pkg.add(\"SparseDiffTools\");
25
- pkg\"precompile\";
26
- using SparseDiffTools;"
+ - julia --project -e "using Pkg; Pkg.build(); using SparseDiffTools"
27
only:
28
- master
29
- tags
0 commit comments