mirror of https://gitee.com/openkylin/libvirt.git
ci: Stop using --workdir
Now that we're using sudo, the initial work directory is no longer relevant since the user will find themselves in their home directory when they get control anyway. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
4c39e54ca9
commit
e672f827d9
|
@ -172,7 +172,6 @@ CI_GIT_ARGS = \
|
||||||
# as dev so that file ownership matches host
|
# as dev so that file ownership matches host
|
||||||
# instead of root:root
|
# instead of root:root
|
||||||
# --volume to pass in the cloned git repo & config
|
# --volume to pass in the cloned git repo & config
|
||||||
# --workdir to set cwd to vpath build location
|
|
||||||
# --ulimit lower files limit for performance reasons
|
# --ulimit lower files limit for performance reasons
|
||||||
# --interactive
|
# --interactive
|
||||||
# --tty Ensure we have ability to Ctrl-C the build
|
# --tty Ensure we have ability to Ctrl-C the build
|
||||||
|
@ -185,7 +184,6 @@ CI_ENGINE_ARGS = \
|
||||||
$(CI_HOME_MOUNTS) \
|
$(CI_HOME_MOUNTS) \
|
||||||
$(CI_SCRIPT_MOUNTS) \
|
$(CI_SCRIPT_MOUNTS) \
|
||||||
--volume $(CI_HOST_SRCDIR):$(CI_CONT_SRCDIR):z \
|
--volume $(CI_HOST_SRCDIR):$(CI_CONT_SRCDIR):z \
|
||||||
--workdir $(CI_CONT_SRCDIR) \
|
|
||||||
--ulimit nofile=$(CI_ULIMIT_FILES):$(CI_ULIMIT_FILES) \
|
--ulimit nofile=$(CI_ULIMIT_FILES):$(CI_ULIMIT_FILES) \
|
||||||
--cap-add=SYS_PTRACE \
|
--cap-add=SYS_PTRACE \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
Loading…
Reference in New Issue