Skip to content

Commit

Permalink
Update builder to golang 18 vhive-serverless#299
Browse files Browse the repository at this point in the history
Signed-off-by: David Schall <[email protected]>
  • Loading branch information
dhschall committed Oct 8, 2022
1 parent 50b1272 commit 930188b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/invoker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: '1.18'

- name: Install protoc
run: |
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/relay-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3


- uses: actions/setup-go@v3
with:
go-version: '1.18'

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
Expand Down Expand Up @@ -85,6 +89,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: '1.18'

- name: Start container
working-directory: benchmarks/aes
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namely, containers, Firecracker and gVisor microVMs. The majority of benchmarks
tracing with [Zipkin](https://zipkin.io/) which traces both the infra components and the user
functions.
Additionally, [several](./benchmarks/README.md#standalone-functions-benchmark-summary) of the benchmarks are compatible with
[vSwarm-u](https://github.com/ease-lab/vSwarm-u), a framework that integrates the benchmarks with [gem5](https://www.gem5.org/),
[vSwarm-u](https://github.com/vhive-serverless/vSwarm-u), a framework that integrates the benchmarks with [gem5](https://www.gem5.org/),
the state-of-the-art research platform for system-and microarchitecture.


Expand Down
2 changes: 1 addition & 1 deletion utils/base-images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


#---------- golang-builder -----------#
FROM golang:1.16 AS golang-builder
FROM golang:1.18 AS golang-builder
LABEL maintainer="https://github.com/ease-lab"


Expand Down

0 comments on commit 930188b

Please sign in to comment.