Skip to content

Commit 72581f2

Browse files
authored
Merge pull request firecracker-microvm#533 from kzys/modern-go
Build firecracker-containerd on more modern dependencies
2 parents b3f99f3 + 5ddd23f commit 72581f2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-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

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ github.com/containerd/fifo v0.0.0-20210316144830-115abcc95a1d/go.mod h1:ocF/ME1S
167167
github.com/containerd/fifo v1.0.0 h1:6PirWBr9/L7GDamKr+XM0IeUFXu5mf3M/BPpH9gaLBU=
168168
github.com/containerd/fifo v1.0.0/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4=
169169
github.com/containerd/go-cni v1.0.1/go.mod h1:+vUpYxKvAF72G9i1WoDOiPGRtQpqsNW/ZHtSlv++smU=
170+
github.com/containerd/go-cni v1.0.2 h1:YbJAhpTevL2v6u8JC1NhCYRwf+3Vzxcc5vGnYoJ7VeE=
170171
github.com/containerd/go-cni v1.0.2/go.mod h1:nrNABBHzu0ZwCug9Ije8hL2xBCYh/pjfMb1aZGrrohk=
171172
github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0=
172173
github.com/containerd/go-runc v0.0.0-20190911050354-e029b79d8cda/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0=

0 commit comments

Comments
 (0)