Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## v0.3.3

### Auto-indexing

(Sourcegraph-use only)

The auto-indexing image also bundles in `git`
which can be used by `bundler`.

## v0.3.2

### Auto-indexing
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.autoindex
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ FROM --platform=linux/amd64 ruby:2.7.6-alpine3.16@sha256:b014cf3e792d7130daec772

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

# Use a release binary instead of building from source
# because release builds are very time-consuming.
#
# The release version is verified by tools/scripts/publish-scip-ruby.sh
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
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

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

Expand Down
2 changes: 1 addition & 1 deletion scip_indexer/SCIPIndexer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) {
return h;
}

const char scip_ruby_version[] = "0.3.2";
const char scip_ruby_version[] = "0.3.3";

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