Skip to content

Commit 72e425a

Browse files
Merge branch 'jvsteiner-node-version'
2 parents e015a55 + c9a8008 commit 72e425a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
dist: trusty
2-
sudo: required
1+
dist: xenial
32

43
language: go
54
go_import_path: github.com/goadapp/goad
65

76
go:
87
- 1.8
98

9+
before_install:
10+
- echo 'deb http://archive.ubuntu.com/ubuntu/ xenial main universe' | sudo tee -a /etc/apt/sources.list
11+
- sudo apt-get update
12+
- sudo apt install -y alien
13+
1014
install:
11-
- sudo apt install alien
1215
- go get github.com/jteeuwen/go-bindata/...
1316

1417
script:

infrastructure/aws/aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ func (infra *AwsInfrastructure) createLambdaFunction(svc *lambda.Lambda, roleArn
184184
FunctionName: aws.String("goad"),
185185
Handler: aws.String("index.handler"),
186186
Role: aws.String(roleArn),
187-
Runtime: aws.String("nodejs4.3"),
187+
Runtime: aws.String("nodejs8.10"),
188188
MemorySize: aws.Int64(1536),
189189
Publish: aws.Bool(true),
190190
Timeout: aws.Int64(300),

0 commit comments

Comments
 (0)