From 32f106990aac8c01b1d1bda033769377615d4641 Mon Sep 17 00:00:00 2001 From: Sergey Dudoladov Date: Mon, 15 Apr 2019 11:52:07 +0200 Subject: [PATCH] Fix build (#542) * bump up golang version * gcc fix --- .travis.yml | 2 +- delivery.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4901e45ff..0fd48a9ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ branches: language: go go: - - "1.10.x" + - "1.12.x" before_install: - go get github.com/Masterminds/glide diff --git a/delivery.yaml b/delivery.yaml index de043a20d..1866486f8 100644 --- a/delivery.yaml +++ b/delivery.yaml @@ -11,11 +11,11 @@ pipeline: apt-get update - desc: 'Install required build software' cmd: | - apt-get install -y make git apt-transport-https ca-certificates curl + apt-get install -y make git apt-transport-https ca-certificates curl build-essential - desc: 'Install go' cmd: | cd /tmp - wget -q https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz -O go.tar.gz + wget -q https://storage.googleapis.com/golang/go1.12.linux-amd64.tar.gz -O go.tar.gz tar -xf go.tar.gz mv go /usr/local ln -s /usr/local/go/bin/go /usr/bin/go