Skip to content

Commit 2fe3818

Browse files
committed
Move functionality from github.com/docker/docker/profiles/seccomp
Moves the `github.com/docker/docker/profiles/seccomp` package into `github.com/moby/sys/seccomp`. Signed-off-by: Jonathan A. Sternberg <[email protected]>
1 parent 71f0c5e commit 2fe3818

15 files changed

+4117
-2
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
# This corresponds with the list in Makefile:1, but omits the "userns"
2828
# and "capability" modules, which require go1.21 as minimum.
29-
echo 'PACKAGES=mountinfo mount reexec sequential signal symlink user' >> $GITHUB_ENV
29+
echo 'PACKAGES=mountinfo mount reexec seccomp sequential signal symlink user' >> $GITHUB_ENV
3030
- name: go mod tidy
3131
run: |
3232
make foreach CMD="go mod tidy"

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PACKAGES ?= capability mountinfo mount reexec sequential signal symlink user userns # IMPORTANT: when updating this list, also update the conditional one in .github/workflows/test.yml
1+
PACKAGES ?= capability mountinfo mount reexec seccomp sequential signal symlink user userns # IMPORTANT: when updating this list, also update the conditional one in .github/workflows/test.yml
22
BINDIR ?= _build/bin
33
CROSS ?= linux/arm linux/arm64 linux/ppc64le linux/s390x \
44
freebsd/amd64 openbsd/amd64 darwin/amd64 darwin/arm64 windows/amd64

0 commit comments

Comments
 (0)