Skip to content

Commit 95b65f8

Browse files
authored
Merge pull request #310 from src-d/feature/indexable
Implement indexes
2 parents 42da787 + fca56c6 commit 95b65f8

File tree

2,681 files changed

+51168
-421859
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,681 files changed

+51168
-421859
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ addons:
2424
- gcc-6
2525
- g++-6
2626

27+
before_install:
28+
- docker pull pilosa/pilosa:v0.9.0
29+
- docker run -d --name pilosa -p 127.0.0.1:10101:10101 pilosa/pilosa:v0.9.0
30+
- docker ps -a
31+
2732
install:
2833
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90
2934
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 90

Gopkg.lock

+36-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[constraint]]
22
name = "gopkg.in/src-d/go-mysql-server.v0"
3-
revision = "a25d2500494956cf33f5ccb182ac809848100eaf"
3+
revision = "5620932d8b3ca58edd6bfa4c168073d4c1ff665f"
44

55
[[constraint]]
66
name = "github.com/jessevdk/go-flags"
@@ -17,6 +17,7 @@
1717
[[constraint]]
1818
name = "gopkg.in/src-d/go-git.v4"
1919
source = "github.com/src-d/go-git"
20+
revision = "0710c6cb710a0cdab04ab7f61cc62e23cfcacbee"
2021

2122
[[constraint]]
2223
name = "gopkg.in/src-d/go-git-fixtures.v3"

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ $(MAKEFILE):
1313

1414
-include $(MAKEFILE)
1515

16-
dependencies:
16+
bblfsh-client:
1717
cd vendor/gopkg.in/bblfsh/client-go.v2 && make dependencies
18+
19+
dependencies: bblfsh-client

0 commit comments

Comments
 (0)