Skip to content

Commit 4e7915f

Browse files
committed
CI: allow Go 1.13 for Docker/Moby compatibility
Docker/Moby still uses Go 1.13 for building containerd binaries. Signed-off-by: Akihiro Suda <[email protected]>
1 parent feee16e commit 4e7915f

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,16 @@ jobs:
217217
strategy:
218218
matrix:
219219
os: [ubuntu-18.04, macos-10.15, windows-2019]
220+
go-version: ['1.16.3']
221+
include:
222+
# Go 1.13.x is still used by Docker/Moby
223+
- go-version: '1.13.x'
224+
os: ubuntu-18.04
220225

221226
steps:
222227
- uses: actions/setup-go@v2
223228
with:
224-
go-version: '1.16.3'
229+
go-version: ${{ matrix.go-version }}
225230

226231
- name: Set env
227232
shell: bash
@@ -571,4 +576,4 @@ jobs:
571576
name: TestResults cgroup2 ${{ matrix.runtime }} ${{matrix.runc}}
572577
path: |
573578
${{github.workspace}}/*-junit.xml
574-
${{github.workspace}}/critestreport/*
579+
${{github.workspace}}/critestreport/*

0 commit comments

Comments
 (0)