Skip to content

Commit 8b4fd1a

Browse files
[CI] Install mercurial
1 parent 976260c commit 8b4fd1a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
docker:
4141
- image: crystallang/crystal:latest
4242
steps:
43+
- run:
44+
name: Install mercurial
45+
command: apt-get update && apt-get install mercurial -y
4346
- shards-make-test
4447

4548
test-on-osx:
@@ -49,14 +52,17 @@ jobs:
4952
- with-brew-cache:
5053
steps:
5154
- run:
52-
name: Install Crystal
53-
command: brew install crystal
55+
name: Install Crystal and Mercurial
56+
command: brew install crystal mercurial
5457
- shards-make-test
5558

5659
test-on-nightly:
5760
docker:
5861
- image: crystallang/crystal:nightly
5962
steps:
63+
- run:
64+
name: Install mercurial
65+
command: apt-get update && apt-get install mercurial -y
6066
- shards-make-test
6167

6268
workflows:

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ before_script: |
1010
git config --global column.ui always
1111
1212
script:
13+
- apt-get update && apt-get install mercurial -y
1314
- make test
1415
- crystal tool format --check src spec

0 commit comments

Comments
 (0)