mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +08:00
@ -135,8 +135,10 @@ gating_task:
|
|||||||
# This task builds Podman with different buildtags to ensure the build does
|
# This task builds Podman with different buildtags to ensure the build does
|
||||||
# not break.
|
# not break.
|
||||||
build_script:
|
build_script:
|
||||||
|
- '/usr/local/bin/entrypoint.sh clean podman'
|
||||||
|
- '/usr/local/bin/entrypoint.sh clean podman-remote'
|
||||||
- '/usr/local/bin/entrypoint.sh clean podman BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp"'
|
- '/usr/local/bin/entrypoint.sh clean podman BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp"'
|
||||||
|
- '/usr/local/bin/entrypoint.sh clean podman-remote-darwin'
|
||||||
|
|
||||||
build_each_commit_task:
|
build_each_commit_task:
|
||||||
|
|
||||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
|||||||
GO ?= go
|
GO ?= go
|
||||||
DESTDIR ?= /
|
DESTDIR ?= /
|
||||||
EPOCH_TEST_COMMIT ?= 4b80517b6a638ff06f8ad432f0f0f5839283d058
|
EPOCH_TEST_COMMIT ?= 1c45b42e9ff972d9645735118635e4186e6411f8
|
||||||
HEAD ?= HEAD
|
HEAD ?= HEAD
|
||||||
CHANGELOG_BASE ?= HEAD~
|
CHANGELOG_BASE ?= HEAD~
|
||||||
CHANGELOG_TARGET ?= HEAD
|
CHANGELOG_TARGET ?= HEAD
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (r *Runtime) removeVolume(ctx context.Context, v *Volume, force, prune bool) error {
|
func (r *Runtime) removeVolume(ctx context.Context, v *Volume, force bool) error {
|
||||||
return ErrNotImplemented
|
return ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ func SkipStorageSetup() bool {
|
|||||||
|
|
||||||
// JoinNS re-exec podman in a new userNS and join the user namespace of the specified
|
// JoinNS re-exec podman in a new userNS and join the user namespace of the specified
|
||||||
// PID.
|
// PID.
|
||||||
func JoinNS(pid uint) (bool, int, error) {
|
func JoinNS(pid uint, preserveFDs int) (bool, int, error) {
|
||||||
return false, -1, errors.New("this function is not supported on this os")
|
return false, -1, errors.New("this function is not supported on this os")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user