Skip to content

Commit 0d38df9

Browse files
committed
Build firecracker-containerd on more modern dependencies
Apparently it doesn't work with Go 1.16 currently. Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent b3f99f3 commit 0d38df9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@ jobs:
1111
env:
1212
GO111MODULE: on
1313

14-
# Intentionally use 18.04 instead of "latest" to
15-
# make this build reproducible.
16-
runs-on: ubuntu-18.04
17-
1814
strategy:
1915
matrix:
20-
go: ['1.13', '1.14']
16+
os: ['ubuntu-18.04', 'ubuntu-20.04']
17+
go: ['1.13', '1.14', '1.15', '1.16']
2118
# Build all variants regardless of failures
2219
fail-fast: false
23-
name: Go ${{ matrix.go }}
20+
21+
name: ${{ matrix.os }} / Go ${{ matrix.go }}
22+
runs-on: ${{ matrix.os }}
2423

2524
steps:
2625
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)