Skip to content

Commit 1b1807a

Browse files
Merge pull request #59 from JuliaDiffEq/ChrisRackauckas-patch-1
Add build stages to the Gitlab yml
2 parents 270249c + 90bc383 commit 1b1807a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.gitlab-ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ cache:
88
paths:
99
- .julia/
1010

11+
stages:
12+
- build
13+
- test
14+
1115
build:
1216
stage: build
1317
tags:
@@ -18,12 +22,7 @@ build:
1822
- export PATH="$(pwd)/julia-1.1.1/bin:$PATH"
1923
- julia -e "using InteractiveUtils;
2024
versioninfo()"
21-
- julia --project -e "using Pkg;
22-
Pkg.update();
23-
Pkg.instantiate();
24-
Pkg.add(\"SparseDiffTools\");
25-
pkg\"precompile\";
26-
using SparseDiffTools;"
25+
- julia --project -e "using Pkg; Pkg.build(); using SparseDiffTools"
2726
only:
2827
- master
2928
- tags

0 commit comments

Comments
 (0)