Remove seccomp/Linux deps steps in GH Actions

Recent changes removed the need for libseccomp-dev when building
containerd. The btrfs tools package is already installed on GH Actions
runners and was already a no-op so the whole step can be removed.

Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
This commit is contained in:
Phil Estes 2020-07-31 11:25:26 -04:00
parent 6162ae93db
commit 5a190c7077
No known key found for this signature in database
GPG Key ID: 0F386284C03A1162
2 changed files with 0 additions and 11 deletions

View File

@ -235,12 +235,6 @@ jobs:
with:
path: src/github.com/containerd/containerd
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y btrfs-tools libseccomp-dev
- name: Make
run: |
make build

View File

@ -79,11 +79,6 @@ jobs:
repository: containerd/containerd
ref: ${{ github.ref }}
path: src/github.com/containerd/containerd
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y btrfs-tools libseccomp-dev
- name: HCS Shim commit
id: hcsshim_commit
if: startsWith(matrix.os, 'windows')