action
Some checks failed
/ alpine (push) Failing after 26s
/ debian (push) Failing after 1m4s
/ ubuntu (push) Failing after 1m27s
/ arch (push) Failing after 1m25s
/ opensuse (push) Failing after 2m16s
/ fedora (push) Failing after 8m20s
/ alma (push) Failing after 1m41s
/ rocky (push) Failing after 10m41s
Some checks failed
/ alpine (push) Failing after 26s
/ debian (push) Failing after 1m4s
/ ubuntu (push) Failing after 1m27s
/ arch (push) Failing after 1m25s
/ opensuse (push) Failing after 2m16s
/ fedora (push) Failing after 8m20s
/ alma (push) Failing after 1m41s
/ rocky (push) Failing after 10m41s
This commit is contained in:
parent
c77674afa4
commit
c7c0d7c7d7
1 changed files with 9 additions and 0 deletions
|
@ -4,11 +4,20 @@ import os
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from rwx import ps
|
from rwx import ps
|
||||||
|
from rwx.log import stream as log
|
||||||
|
|
||||||
from spcd.ci import project, projects
|
from spcd.ci import project, projects
|
||||||
from spcd.shell import env
|
from spcd.shell import env
|
||||||
|
|
||||||
|
|
||||||
|
def action() -> None:
|
||||||
|
"""Display action inputs."""
|
||||||
|
prefix = ""
|
||||||
|
for variable, value in sorted(projects.environment.items()):
|
||||||
|
if variable.startswith(prefix):
|
||||||
|
log.info("%s = %s", variable, value)
|
||||||
|
|
||||||
|
|
||||||
def synchronize(source: str | None = None, target: str | None = None) -> None:
|
def synchronize(source: str | None = None, target: str | None = None) -> None:
|
||||||
"""Synchronize output towards a target.
|
"""Synchronize output towards a target.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue