mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
TMPDIR is typically /tmp which is typically(*) a tmpfs.
This PR ignores $TMPDIR when $CI is defined, forcing all
e2e tests to set up one central working directory in /var/tmp
instead.
Also, lots of cleanup.
(*) For many years, up to and still including the time of
this PR, /tmp on Fedora CI VMs is actually NOT tmpfs,
it is just / (root). This is nonstandard and undesirable.
Efforts are underway to remove this special case.
Signed-off-by: Ed Santiago <santiago@redhat.com>
13 lines
412 B
Plaintext
13 lines
412 B
Plaintext
## assert-podman-final-args localhost/imagename
|
|
## assert-podman-args --env-file /opt/env/abs-1
|
|
## assert-podman-args --env-file /opt/env/abs-2
|
|
## assert-podman-args-regex --env-file /.*/podman-e2e-.*/subtest-.*/quadlet/rel-1
|
|
## assert-podman-args --env-file %h/env
|
|
|
|
[Container]
|
|
Image=localhost/imagename
|
|
EnvironmentFile=/opt/env/abs-1
|
|
EnvironmentFile=/opt/env/abs-2
|
|
EnvironmentFile=rel-1
|
|
EnvironmentFile=%h/env
|