File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 40
40
docker :
41
41
- image : crystallang/crystal:latest
42
42
steps :
43
+ - run :
44
+ name : Install mercurial
45
+ command : apt-get update && apt-get install mercurial -y
43
46
- shards-make-test
44
47
45
48
test-on-osx :
@@ -49,14 +52,17 @@ jobs:
49
52
- with-brew-cache :
50
53
steps :
51
54
- run :
52
- name : Install Crystal
53
- command : brew install crystal
55
+ name : Install Crystal and Mercurial
56
+ command : brew install crystal mercurial
54
57
- shards-make-test
55
58
56
59
test-on-nightly :
57
60
docker :
58
61
- image : crystallang/crystal:nightly
59
62
steps :
63
+ - run :
64
+ name : Install mercurial
65
+ command : apt-get update && apt-get install mercurial -y
60
66
- shards-make-test
61
67
62
68
workflows :
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ before_script: |
10
10
git config --global column.ui always
11
11
12
12
script :
13
+ - apt-get update && apt-get install mercurial -y
13
14
- make test
14
15
- crystal tool format --check src spec
You can’t perform that action at this time.
0 commit comments