Skip to content

Commit 7c6ae97

Browse files
autoindex: Bundle git in Docker image (#173)
1 parent e7ea681 commit 7c6ae97

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## v0.3.3
4+
5+
### Auto-indexing
6+
7+
(Sourcegraph-use only)
8+
9+
The auto-indexing image also bundles in `git`
10+
which can be used by `bundler`.
11+
312
## v0.3.2
413

514
### Auto-indexing

Dockerfile.autoindex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ FROM --platform=linux/amd64 ruby:2.7.6-alpine3.16@sha256:b014cf3e792d7130daec772
55

66
# gcompat is a glibc-musl compat library (scip-ruby links in glibc)
77
# Other deps are to help build C extensions in gems.
8-
RUN apk add --no-cache bash wget make libstdc++ gcc g++ automake autoconf gcompat
8+
RUN apk add --no-cache bash wget make libstdc++ gcc g++ automake autoconf gcompat git
99

1010
# Use a release binary instead of building from source
1111
# because release builds are very time-consuming.
1212
#
1313
# The release version is verified by tools/scripts/publish-scip-ruby.sh
14-
RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.3.2/scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby
14+
RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.3.3/scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby
1515

1616
COPY scip_indexer/autoindex.sh /usr/bin/scip-ruby-autoindex
1717

scip_indexer/SCIPIndexer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) {
6161
return h;
6262
}
6363

64-
const char scip_ruby_version[] = "0.3.2";
64+
const char scip_ruby_version[] = "0.3.3";
6565

6666
// Last updated: https://github.com/sourcegraph/scip-ruby/pull/168
6767
const char scip_ruby_sync_upstream_sorbet_sha[] = "b8461dbcd56ba56b2854d07f546c7216b31b58e6";

0 commit comments

Comments
 (0)