Skip to content

Commit 0be26b6

Browse files
committed
Update ci dependency
1 parent e0faee5 commit 0be26b6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

ci/dependencies.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ set -ex -o pipefail
44
source $(dirname $0)/env.sh
55

66
# install utilities
7-
sudo apt-get update && sudo apt-get -y install awscli jq
7+
sudo apt-get update && sudo apt-get -y install unzip jq curl
8+
9+
# install aws cli
10+
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
11+
unzip awscliv2.zip
12+
sudo ./aws/install
813

914
# install docker
1015
curl -s https://download.docker.com/linux/static/stable/x86_64/docker-18.09.6.tgz | sudo tar -C /usr/bin --strip-components 1 -xz

cmd/convox/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package:
2121

2222
go install github.com/crazy-max/xgo@v0.7.5
2323
if [ -f /.dockerenv ]; then tar cz $(GOPATH) | docker run -v $(GOPATH):/gopath -i ubuntu tar xz -C /gopath --strip-components 2; fi
24-
cd ../.. && $(GOPATH)/bin/xgo -branch $(shell git rev-parse HEAD) -pkg cmd/convox -out cmd/convox/pkg/convox -go 1.23.x -targets 'darwin/amd64' -ldflags "-X main.version=$(VERSION)" .
24+
cd ../.. && $(GOPATH)/bin/xgo -branch $(shell git rev-parse HEAD) -pkg cmd/convox -out cmd/convox/pkg/convox -go 1.24.x -targets 'darwin/amd64' -ldflags "-X main.version=$(VERSION)" .
2525
if [ -f /.dockerenv ]; then mkdir -p pkg && docker run -v $(GOPATH):/gopath -i ubuntu tar czv /gopath/src/github.com/convox/rack/cmd/convox/pkg | tar xzv -C pkg --strip-components 8; fi
2626

2727
release: package

0 commit comments

Comments
 (0)