File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ jobs :
4+
5+ test :
6+ working_directory : /root/project/Dash
7+
8+ docker :
9+ - image : julia:latest
10+
11+ steps :
12+ - checkout
13+
14+ - run :
15+ name : ℹ️ CI Context
16+ command : |
17+ echo "TRIGGERER: ${CIRCLE_USERNAME}"
18+ echo "BUILD_NUMBER: ${CIRCLE_BUILD_NUM}"
19+ echo "BUILD_URL: ${CIRCLE_BUILD_URL}"
20+ echo "BRANCH: ${CIRCLE_BRANCH}"
21+ echo "RUNNING JOB: ${CIRCLE_JOB}"
22+ echo "JOB PARALLELISM: ${CIRCLE_NODE_TOTAL}"
23+ echo "CIRCLE_REPOSITORY_URL: ${CIRCLE_REPOSITORY_URL}"
24+ echo $CIRCLE_JOB > circlejob.txt
25+
26+ - run :
27+ name : 🔎 Unit tests
28+ command : |
29+ julia -e 'using Pkg; Pkg.update(); Pkg.add(PackageSpec(path=pwd())); Pkg.build("Dash"); Pkg.test("Dash", coverage=true);'
30+
31+ workflows :
32+ version : 2
33+ build :
34+ jobs :
35+ - " test"
You can’t perform that action at this time.
0 commit comments