Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 45ff5aa

Browse files
Denys Smirnovdennwc
Denys Smirnov
authored andcommitted
update sdk and enable language aliases
Signed-off-by: Denys Smirnov <[email protected]>
1 parent 9470950 commit 45ff5aa

File tree

6 files changed

+128
-17
lines changed

6 files changed

+128
-17
lines changed

Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ RUN yarn && yarn build
2525
# Stage 1.1: Native Driver Tests
2626
#================================
2727
FROM native as native_test
28+
2829
# run native driver tests
2930
RUN yarn test
3031

3132

3233
#=================================
3334
# Stage 2: Go Driver Server Build
3435
#=================================
35-
FROM golang:1.10-alpine as driver
36+
FROM golang:1.12-alpine as driver
3637

3738
ENV DRIVER_REPO=github.com/bblfsh/javascript-driver
3839
ENV DRIVER_REPO_PATH=/go/src/$DRIVER_REPO
@@ -45,6 +46,9 @@ WORKDIR $DRIVER_REPO_PATH/
4546

4647
ENV GO111MODULE=on GOFLAGS=-mod=vendor
4748

49+
# workaround for https://github.com/golang/go/issues/28065
50+
ENV CGO_ENABLED=0
51+
4852
# build server binary
4953
RUN go build -o /tmp/driver ./driver/main.go
5054
# build tests

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JavaScript driver for [Babelfish](https://github.com/bblfsh/bblfshd) ![Driver Status](https://img.shields.io/badge/status-beta-dbd25c.svg) [![Build Status](https://travis-ci.org/bblfsh/javascript-driver.svg?branch=master)](https://travis-ci.org/bblfsh/javascript-driver) ![Native Version](https://img.shields.io/badge/javascript%20version-8.9.3--r1-aa93ea.svg) ![Go Version](https://img.shields.io/badge/go%20version-1.12-63afbf.svg)
1+
# JavaScript driver for [Babelfish](https://github.com/bblfsh/bblfshd) ![Driver Status](https://img.shields.io/badge/status-beta-dbd25c.svg) [![Build Status](https://travis-ci.org/bblfsh/javascript-driver.svg?branch=master)](https://travis-ci.org/bblfsh/javascript-driver) ![Native Version](https://img.shields.io/badge/javascript%20version-8-aa93ea.svg) ![Go Version](https://img.shields.io/badge/go%20version-1.12-63afbf.svg)
22

33
JavaScript driver for [babelfish](https://github.com/bblfsh/bblfshd).
44

build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sdk: '2'
22
go-runtime:
3-
version: '1.10-alpine'
3+
version: '1.12-alpine'
44
native:
55
image: 'node:8-alpine'
66
static:

go.mod

+26-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,31 @@ go 1.12
44

55
require (
66
github.com/Microsoft/go-winio v0.4.12 // indirect
7-
github.com/bblfsh/sdk/v3 v3.0.0
8-
github.com/containerd/continuity v0.0.0-20181203112020-004b46473808 // indirect
7+
github.com/bblfsh/sdk/v3 v3.1.0
8+
github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc // indirect
9+
github.com/docker/go-connections v0.4.0 // indirect
10+
github.com/docker/go-units v0.4.0 // indirect
11+
github.com/gogo/protobuf v1.2.1 // indirect
12+
github.com/google/go-cmp v0.3.0 // indirect
13+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
14+
github.com/mattn/go-colorable v0.1.2 // indirect
915
github.com/opencontainers/runc v1.0.0-rc6 // indirect
10-
github.com/stretchr/testify v1.2.2
11-
golang.org/x/text v0.3.0
16+
github.com/opentracing/opentracing-go v1.1.0 // indirect
17+
github.com/ory/dockertest v3.3.4+incompatible // indirect
18+
github.com/pkg/errors v0.8.1 // indirect
19+
github.com/sirupsen/logrus v1.4.2 // indirect
20+
github.com/stretchr/testify v1.3.0
21+
github.com/uber-go/atomic v1.4.0 // indirect
22+
github.com/uber/jaeger-client-go v2.16.0+incompatible // indirect
23+
github.com/uber/jaeger-lib v2.0.0+incompatible // indirect
24+
go.uber.org/atomic v1.4.0 // indirect
25+
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f // indirect
26+
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect
27+
golang.org/x/sys v0.0.0-20190524152521-dbbf3f1254d4 // indirect
28+
golang.org/x/text v0.3.2
29+
google.golang.org/appengine v1.4.0 // indirect
30+
google.golang.org/genproto v0.0.0-20190522204451-c2c4e71fbf69 // indirect
31+
google.golang.org/grpc v1.21.0 // indirect
32+
gopkg.in/bblfsh/sdk.v1 v1.17.0 // indirect
33+
gopkg.in/yaml.v2 v2.2.2 // indirect
1234
)

0 commit comments

Comments
 (0)