diff options
author | baude <bbaude@redhat.com> | 2019-03-12 12:59:56 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-03-13 12:10:35 -0500 |
commit | c8ca027938b397d52a3064c5b5b10f6707e5f38c (patch) | |
tree | 336b80a2b18f93ee6870ac168c5bd692a82ad368 /pkg | |
parent | 8b3f759800ebd6e53e0a807728ede633aa9bdb36 (diff) | |
download | podman-c8ca027938b397d52a3064c5b5b10f6707e5f38c.tar.gz podman-c8ca027938b397d52a3064c5b5b10f6707e5f38c.tar.bz2 podman-c8ca027938b397d52a3064c5b5b10f6707e5f38c.zip |
Add gating tasks
to protect against regressions, we need to add a few gating tasks:
* build with varlink
* build podman-remote
* build podman-remote-darwin
we already have a gating task for building without varlink
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/rootless/rootless_unsupported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/rootless/rootless_unsupported.go b/pkg/rootless/rootless_unsupported.go index 54e70961b..e01d7855c 100644 --- a/pkg/rootless/rootless_unsupported.go +++ b/pkg/rootless/rootless_unsupported.go @@ -41,7 +41,7 @@ func SkipStorageSetup() bool { // JoinNS re-exec podman in a new userNS and join the user namespace of the specified // 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") } |