From 5a190c707790abea694b09765bb859ca88fe0b7d Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Fri, 31 Jul 2020 11:25:26 -0400 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 6 ------ .github/workflows/release.yml | 5 ----- 2 files changed, 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cea0a3039..acd5624fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 45e15b551..79626aa7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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')