1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
name: CI
on:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
jobs:
#
# Project checks
#
project:
name: Project Checks
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
#
# Checkout repos
#
- name: Checkout cgroups
uses: actions/checkout@v4
with:
path: src/github.com/containerd/cgroups
fetch-depth: 25
#
# Install Go
#
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
cache-dependency-path: src/github.com/containerd/cgroups
- name: Project checks
uses: containerd/project-checks@v1.1.0
with:
working-directory: src/github.com/containerd/cgroups
lint:
name: Lint
timeout-minutes: 10
needs: [project]
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: [1.22.x, 1.23.x]
steps:
- name: Checkout cgroups
uses: actions/checkout@v4
with:
path: src/github.com/containerd/cgroups
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: src/github.com/containerd/cgroups
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.0
args: --verbose
working-directory: src/github.com/containerd/cgroups
test:
name: Test cgroups
timeout-minutes: 15
needs: [project]
strategy:
matrix:
go-version: [1.22.x, 1.23.x]
# Ubuntu-20.04 has cgroups v1 default; Ubuntu-22.04 has cgroups v2 default.
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout cgroups
uses: actions/checkout@v4
with:
path: src/github.com/containerd/cgroups
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
# Disable Go caching feature when compiling across Linux distributions due to collisions until https://github.com/actions/setup-go/issues/368 is resolved.
cache: false
- name: Run cgroup tests
run: |
$(command -v go) test -exec sudo -v -race -coverprofile=coverage.txt -covermode=atomic ./...
working-directory: src/github.com/containerd/cgroups
- name: Build cgctl
run: make all
working-directory: src/github.com/containerd/cgroups
proto:
name: Compare auto-generated Go files
runs-on: ubuntu-22.04
steps:
- name: Checkout cgroups
uses: actions/checkout@v4
with:
path: src/github.com/containerd/cgroups
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
cache-dependency-path: src/github.com/containerd/cgroups
- name: Set env
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Install protoc
run: |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v21.5/protoc-21.5-linux-x86_64.zip
# /usr/local is not writable from GitHub Actions' user
sudo unzip protoc-21.5-linux-x86_64.zip -d /usr/local
- name: Install proto-related tools for Go
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
go install github.com/containerd/protobuild@v0.3.0
go install github.com/containerd/protobuild/cmd/go-fix-acronym@v0.3.0
- name: Compare auto-generated Go files
run: |
make proto
git diff --exit-code
working-directory: src/github.com/containerd/cgroups
|