Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Remove use of dep and update version of Go to Go 1.13 #8

Merged
merged 2 commits into from
Sep 4, 2019
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
5 changes: 2 additions & 3 deletions container/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ apt-get install -y git mercurial gcc curl postgresql openssl

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash

wget -nv https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz
tar xf go1.10.linux-amd64.tar.gz
wget -nv https://dl.google.com/go/go1.13.linux-amd64.tar.gz
tar xf go1.13.linux-amd64.tar.gz
mv go /usr/local

mkdir -p /.gopath/bin
mkdir -p /.gopath/src
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
3 changes: 0 additions & 3 deletions container/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ function download_bridge() {
mkdir -p $MONOREPO
git clone https://github.com/stellar/go $MONOREPO
cd $MONOREPO
dep ensure -v
go build -v ./services/bridge
go build -v ./services/compliance
cd -
Expand All @@ -34,7 +33,6 @@ function download_bridge() {
cd $MONOREPO
git checkout release-bridge-$RC_VERSION
git pull
dep ensure -v
go build -v ./services/bridge
cd -
# Move binaries to home dir
Expand All @@ -44,7 +42,6 @@ function download_bridge() {
cd $MONOREPO
git checkout release-compliance-$RC_VERSION
git pull
dep ensure -v
go build -v ./services/compliance
cd -
# Move binaries to home dir
Expand Down